-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add alter ups to change the name of the PIMS_ROLEs for lease/license
- Loading branch information
1 parent
6b2b7f3
commit a6bc91d
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
...ce/database/mssql/scripts/dbscripts/PSP_PIMS_S96_00/Alter Down/011_DML_PIMS_ROLE_NAME.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
UPDATE | ||
PIMS_ROLE | ||
SET | ||
NAME = 'Lease/License functional', | ||
CONCURRENCY_CONTROL_NUMBER = CONCURRENCY_CONTROL_NUMBER + 1 | ||
WHERE | ||
NAME = 'Lease License functional'; | ||
|
||
UPDATE | ||
PIMS_ROLE | ||
SET | ||
NAME = 'Lease/License read-only', | ||
CONCURRENCY_CONTROL_NUMBER = CONCURRENCY_CONTROL_NUMBER + 1 | ||
WHERE | ||
NAME = 'Lease License read-only'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
source/database/mssql/scripts/dbscripts/PSP_PIMS_S96_00/Alter Up/164_DML_PIMS_ROLE_NAME.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
UPDATE | ||
PIMS_ROLE | ||
SET | ||
NAME = 'Lease License functional', | ||
CONCURRENCY_CONTROL_NUMBER = CONCURRENCY_CONTROL_NUMBER + 1 | ||
WHERE | ||
NAME = 'Lease/License functional'; | ||
|
||
UPDATE | ||
PIMS_ROLE | ||
SET | ||
NAME = 'Lease License read-only', | ||
CONCURRENCY_CONTROL_NUMBER = CONCURRENCY_CONTROL_NUMBER + 1 | ||
WHERE | ||
NAME = 'Lease/License read-only'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters