-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #238 from QGEP/2024-08-22-rename-mutation.system-u…
…ser-to-avoid-postgres-confllicts 2024 08 22 rename mutation.system user to avoid postgres confllicts
- Loading branch information
Showing
3 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
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
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
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,11 @@ | ||
-- noop delta, used only to unambigously define the datamodel version | ||
ALTER TABLE qgep_od.mutation | ||
RENAME COLUMN system_user to user_system; | ||
|
||
UPDATE qgep_sys.dictionary_od_field | ||
SET field_name = 'user_system' | ||
WHERE attribute_id = 5532; | ||
|
||
UPDATE qgep_sys.dictionary_od_field | ||
SET field_name_en = 'user_system' | ||
WHERE attribute_id = 5532; |