Done ticket GEPAFINBE-128

This commit is contained in:
rajesh
2025-01-13 16:28:01 +05:30
parent 577055d169
commit f9e9673d93
18 changed files with 661 additions and 5 deletions

View File

@@ -2123,4 +2123,30 @@
</addColumn>
</changeSet>
<changeSet id="13-01-2025_NK_142215" author="Rajesh Khore">
<createTable tableName="role_action_context">
<column autoIncrement="true" name="id" type="BIGINT">
<constraints nullable="false" primaryKey="true"
primaryKeyName="pk_role_action_context"/>
</column>
<column name="action_context" type="TEXT"/>
<column name="role_id" type="BIGINT"/>
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false">
<constraints nullable="false"/>
</column>
<column name="is_viewed" type="BOOLEAN" defaultValueBoolean="false">
<constraints nullable="false"/>
</column>
<column name="description" type="TEXT"/>
<column name="created_date" type="TIMESTAMP WITHOUT TIME ZONE"/>
<column name="updated_date" type="TIMESTAMP WITHOUT TIME ZONE"/>
</createTable>
</changeSet>
<changeSet id="13-01-2025_NK_164615" author="Rajesh Khore">
<sqlFile dbms="postgresql"
path="db/dump/insert_action_context_data_09_01_2025.sql"/>
</changeSet>
</databaseChangeLog>