Updated Document entity to work with sourceId instead of callId
This commit is contained in:
@@ -540,15 +540,15 @@
|
||||
columnName="order_no" />
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="03-09-2024_1" author="Rajesh Khore">
|
||||
<sql>
|
||||
TRUNCATE TABLE FORM_FIELD RESTART IDENTITY;
|
||||
</sql>
|
||||
<sqlFile dbms="postgresql"
|
||||
<changeSet id="03-09-2024_1" author="Rajesh Khore">
|
||||
<sql>
|
||||
TRUNCATE TABLE FORM_FIELD RESTART IDENTITY;
|
||||
</sql>
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_form_field_data_04_09_2024.sql" />
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="04-09-2024_1" author="Rajesh Khore">
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="04-09-2024_1" author="Rajesh Khore">
|
||||
<dropColumn tableName="FAQ" columnName="question_short" />
|
||||
<dropColumn tableName="FAQ" columnName="question" />
|
||||
<dropColumn tableName="FAQ" columnName="response_short" />
|
||||
@@ -563,6 +563,14 @@
|
||||
</addColumn>
|
||||
<modifyDataType tableName="LOOKUP_DATA" columnName="title" newDataType="TEXT"/>
|
||||
</changeSet>
|
||||
|
||||
|
||||
|
||||
<changeSet id="09-09-2024_1" author="Harish Bagora">
|
||||
<renameColumn tableName="document" oldColumnName="call_id" newColumnName="source_id" columnDataType="BIGINT"/>
|
||||
<addColumn tableName="document">
|
||||
<column name="source" type="VARCHAR(255)"/>
|
||||
</addColumn>
|
||||
<dropColumn tableName="document" columnName="description"/>
|
||||
<dropForeignKeyConstraint baseTableName="document" constraintName="fk_call_document"/>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
Reference in New Issue
Block a user