Done ticket GEPAFINBE-6143

This commit is contained in:
rajesh
2025-11-04 16:46:25 +05:30
parent fcee98a228
commit 5171c69df4
30 changed files with 837 additions and 44 deletions

View File

@@ -3100,4 +3100,39 @@
<changeSet id="23-10-2025_RK_151527" author="Rajesh Khore">
<sqlFile dbms="postgresql" path="db/dump/update_document_for_special_amendment_23-10-2025.sql"/>
</changeSet>
<changeSet id="29-10-2025_RK_164154" author="Rajesh Khore">
<createTable tableName="application_contract">
<column name="id" type="INTEGER" autoIncrement="true">
<constraints primaryKey="true" primaryKeyName="application_contract_pkey" nullable="false"/>
</column>
<column name="subject" type="VARCHAR(255)"/>
<column name="text" type="VARCHAR(255)"/>
<column name="instructor_document" type="VARCHAR(255)"/>
<column name="status" type="VARCHAR(255)"/>
<column name="beneficiary_document" type="VARCHAR(255)"/>
<column name="beneficiary_user_id" type="INTEGER"/>
<column name="instructor_id" type="INTEGER"/>
<column name="application_id" type="INTEGER"/>
<column name="is_deleted" type="BOOLEAN"/>
<column name="completion_date" type="TIMESTAMP WITHOUT TIME ZONE"/>
<column name="created_date" type="TIMESTAMP WITHOUT TIME ZONE"/>
<column name="updated_date" type="TIMESTAMP WITHOUT TIME ZONE"/>
</createTable>
</changeSet>
<changeSet id="02-11-2025_RK_204924" author="Rajesh Khore">
<insert tableName="s3_path_configuration">
<column name="type" value="CONTRACT"/>
<column name="path" value="call/{call_id}/application/{application_id}/contract/{contract_id}/"/>
<column name="bucket_name" value="mementoresources"/>
<column name="created_date" value="2025-11-03 00:00:00"/>
<column name="updated_date" value="2025-11-03 00:00:00"/>
<column name="parent_folder" value="gepafin/staging"/>
</insert>
</changeSet>
<changeSet id="04-11-2025_RK_151527" author="Rajesh Khore">
<sqlFile dbms="postgresql" path="db/dump/insert_notification_template_for_contract_upload.sql"/>
</changeSet>
</databaseChangeLog>