From ef09cd8c26044b0d9077aa7e9f49306e0f1d99ce Mon Sep 17 00:00:00 2001 From: "cyril.tsui" Date: Wed, 17 Jul 2024 11:50:29 +0800 Subject: [PATCH] update --- .../20240716_01_cyril/01_update_authority.sql | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/main/resources/db/changelog/changes/20240716_01_cyril/01_update_authority.sql diff --git a/src/main/resources/db/changelog/changes/20240716_01_cyril/01_update_authority.sql b/src/main/resources/db/changelog/changes/20240716_01_cyril/01_update_authority.sql new file mode 100644 index 0000000..db04844 --- /dev/null +++ b/src/main/resources/db/changelog/changes/20240716_01_cyril/01_update_authority.sql @@ -0,0 +1,33 @@ +-- liquibase formatted sql +-- changeset cyril:authority + +UPDATE authority +SET authority='G_LATE_START_REPORT' +WHERE authority='GENERATE_LATE_START_REPORT'; +UPDATE authority +SET authority='G_PROJECT_POTENTIAL_DELAY_REPORT' +WHERE authority='GENERATE_PROJECT_POTENTIAL_DELAY_REPORT'; +UPDATE authority +SET authority='G_RESOURCE_OVERCONSUMPTION_REPORT' +WHERE authority='GENERATE_RESOURCE_OVERCONSUMPTION_REPORT'; +UPDATE authority +SET authority='G_COST_AND_EXPENSE_REPORT' +WHERE authority='GENERATE_COST_ANT_EXPENSE_REPORT'; +UPDATE authority +SET authority='G_PROJECT_COMPLETION_REPORT' +WHERE authority='GENERATE_PROJECT_COMPLETION_REPORT'; +UPDATE authority +SET authority='G_PROJECT_P&L_REPORT' +WHERE authority='GENERATE_PROJECT_P&L_REPORT'; +UPDATE authority +SET authority='G_FINANCIAL_STATUS_REPORT' +WHERE authority='GENERATE_FINANCIAL_STATUS_REPORT'; +UPDATE authority +SET authority='G_PROJECT_CASH_FLOW_REPORT' +WHERE authority='GENERATE_PROJECT_CASH_FLOW_REPORT'; +UPDATE authority +SET authority='G_STAFF_MONTHLY_WORK_HOURS_ANALYSIS_REPORT' +WHERE authority='GENERATE_STAFF_MONTHLY_WORK_HOURS_ANALYSIS_REPORT'; +UPDATE authority +SET authority='G_CROSS_TEAM_CHARGE_REPORT' +WHERE authority='GENERATE_CROSS_TEAM_CHARGE_REPORT';