Sfoglia il codice sorgente

update

tags/Baseline_30082024_BACKEND_UAT
cyril.tsui 1 anno fa
parent
commit
ef09cd8c26
1 ha cambiato i file con 33 aggiunte e 0 eliminazioni
  1. +33
    -0
      src/main/resources/db/changelog/changes/20240716_01_cyril/01_update_authority.sql

+ 33
- 0
src/main/resources/db/changelog/changes/20240716_01_cyril/01_update_authority.sql Vedi File

@@ -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';

Caricamento…
Annulla
Salva