-
Notifications
You must be signed in to change notification settings - Fork 3
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 #1519 from cityofaustin/20178_update_atd_product_o…
…wner_role_to_tpw updates_atd_project_owner_to_tpw_project_owner
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...-database/migrations/1735855851119_update_atd_project_owner_to_tpw_project_owner/down.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,10 @@ | ||
INSERT INTO moped_project_roles (project_role_id, project_role_name, active_role, role_order, project_role_description) | ||
VALUES (0, 'Unknown', TRUE, 999, 'Unknown Role'); | ||
|
||
UPDATE moped_project_roles | ||
SET project_role_description = 'Supervises contractor activities for approval before invoicing; accepts work on behalf of ATD and coordinates with other divisions' | ||
WHERE project_role_id = 12; | ||
|
||
UPDATE moped_project_roles | ||
SET project_role_name = 'ATD Project Owner' | ||
WHERE project_role_id = 5; |
10 changes: 10 additions & 0 deletions
10
moped-database/migrations/1735855851119_update_atd_project_owner_to_tpw_project_owner/up.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,10 @@ | ||
UPDATE moped_project_roles | ||
SET project_role_name = 'TPW Project Owner' | ||
WHERE project_role_id = 5; | ||
|
||
UPDATE moped_project_roles | ||
SET project_role_description = 'Supervises contractor activities for approval before invoicing; accepts work on behalf of TPW and coordinates with other divisions' | ||
WHERE project_role_id = 12; | ||
|
||
DELETE FROM moped_project_roles | ||
WHERE project_role_id = 0; |
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