Resolved conflicts for GEPAFINBE-31.
This commit is contained in:
@@ -1345,7 +1345,7 @@
|
||||
referencedColumnNames="id"/>
|
||||
</changeSet>
|
||||
|
||||
|
||||
|
||||
<changeSet id="24-10-2024_1" author="Rajesh Khore">
|
||||
<dropUniqueConstraint
|
||||
constraintName="company_vat_number_key"
|
||||
@@ -1627,7 +1627,7 @@
|
||||
constraintName="fk_communication_application_amendment_request"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="28-10-2024_3" author="Rajesh Khore">
|
||||
<changeSet id="28-10-2024_3" author="Rajesh Khore">
|
||||
<addColumn tableName="application_amendment_request">
|
||||
<column name="protocol_id" type="INTEGER"/>
|
||||
</addColumn>
|
||||
@@ -1693,15 +1693,15 @@
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="31-10-2024_3" author="Rajesh Khore">
|
||||
<update tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" value="Gepafin S.p.a"/>
|
||||
<where>UNIQUE_UUID = 'p4lk3bcx1RStqTaIVVbXs'</where>
|
||||
</update>
|
||||
<update tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" value="Sviluppumbria S.p.a"/>
|
||||
<where>UNIQUE_UUID = 't7jh5wfg9QXylNaTZkPoE'</where>
|
||||
</update>
|
||||
</changeSet>
|
||||
<update tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" value="Gepafin S.p.a"/>
|
||||
<where>UNIQUE_UUID = 'p4lk3bcx1RStqTaIVVbXs'</where>
|
||||
</update>
|
||||
<update tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" value="Sviluppumbria S.p.a"/>
|
||||
<where>UNIQUE_UUID = 't7jh5wfg9QXylNaTZkPoE'</where>
|
||||
</update>
|
||||
</changeSet>
|
||||
<changeSet id="30-10-2024_4" author="Harish Bagora">
|
||||
<sql dbms="postgresql">select
|
||||
setval('gepafin_schema.system_email_template_id_seq', (select
|
||||
@@ -1716,6 +1716,7 @@
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_system_email_template_for_notification_mail_04_11_2024_1.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="05-11-2024_4" author="Harish Bagora">
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_system_email_template_for_notification_mail_05_11_2024_4.sql"/>
|
||||
@@ -1725,6 +1726,7 @@
|
||||
<dropNotNullConstraint tableName="application_amendment_request" columnName="is_email"/>
|
||||
<dropNotNullConstraint tableName="application_amendment_request" columnName="is_notification"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="13-11-2024_2" author="Harish Bagora">
|
||||
<addColumn tableName="beneficiary_preferred_call">
|
||||
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false">
|
||||
@@ -1733,6 +1735,58 @@
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="15-11-2024_1" author="Nisha Kashyap">
|
||||
<createTable tableName="email_log">
|
||||
<column autoIncrement="true" name="id" type="INTEGER">
|
||||
<constraints nullable="false" primaryKey="true"
|
||||
primaryKeyName="pk_email_logs"/>
|
||||
</column>
|
||||
<column name="email_type" type="VARCHAR(255)">
|
||||
<constraints nullable="false"/>
|
||||
</column>
|
||||
<column name="recipient_type" type="VARCHAR(255)">
|
||||
<constraints nullable="false"/>
|
||||
</column>
|
||||
<column name="recipient_id" type="INTEGER">
|
||||
</column>
|
||||
<column name="email_subject" type="TEXT"/>
|
||||
<column name="email_body" type="TEXT"/>
|
||||
<column name="send_status" type="VARCHAR(255)"/>
|
||||
<column name="send_date_time" type="TIMESTAMP WITHOUT TIME ZONE"/>
|
||||
<column name="created_date" type="TIMESTAMP WITHOUT TIME ZONE" defaultValueComputed="CURRENT_TIMESTAMP"/>
|
||||
<column name="updated_date" type="TIMESTAMP WITHOUT TIME ZONE"/>
|
||||
<column name="email_service_response" type="TEXT"></column>
|
||||
<column name="email_service_type" type="VARCHAR(255)"></column>
|
||||
<column name="recipient_emails" type="TEXT"></column>
|
||||
<column name="user_id" type="INTEGER"></column>
|
||||
<column name="error_message" type="TEXT"/>
|
||||
<column name="entity_id" type="INTEGER"></column>
|
||||
<column name="entity_type" type="VARCHAR(255)"></column>
|
||||
</createTable>
|
||||
</changeSet>
|
||||
<changeSet id="15-11-2024_2" author="Nisha kashyap">
|
||||
<addColumn tableName="system_email_template">
|
||||
<column name="email_scenario" type="VARCHAR(255)"></column>
|
||||
</addColumn>
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/updated_system_email_template_for_email_scenario_15-11-2024.sql"/>
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/updated_hub_data_for_email_service_config_15-11-2024.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="18-11-2024_1" author="Nisha Kashyap">
|
||||
<addColumn tableName="email_log">
|
||||
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false"></column>
|
||||
<column name="application_id" type="INTEGER"></column>
|
||||
<column name="amendment_id" type="INTEGER"></column>
|
||||
<column name="call_id" type="INTEGER"></column>
|
||||
</addColumn>
|
||||
<dropColumn tableName="email_log">
|
||||
<column name="entity_id"></column>
|
||||
<column name="entity_type"></column>
|
||||
</dropColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="20-11-2024_1" author="Piyush">
|
||||
<createTable tableName="user_action">
|
||||
<column autoIncrement="true" name="id" type="INTEGER">
|
||||
@@ -1786,6 +1840,26 @@
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="21-11-2024_1" author="Rajesh Khore">
|
||||
<addColumn tableName="communication">
|
||||
<column name="sender_user_id" type="INTEGER"></column>
|
||||
<column name="receiver_user_id" type="INTEGER"></column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="21-11-2024_2" author="Rajesh Khore">
|
||||
<update tableName="role">
|
||||
<column name="role_name" value='Instructor'/>
|
||||
<where>role_type = 'ROLE_PRE_INSTRUCTOR'</where>
|
||||
</update>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="22-11-2024_1" author="Rajesh Khore">
|
||||
<addColumn tableName="application_evaluation">
|
||||
<column name="MOTIVATION" type="TEXT"></column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="22-11-2024_2" author="Piyush">
|
||||
<addColumn tableName="user_action">
|
||||
<column name="is_deleted" type="BOOLEAN" defaultValueBoolean="false">
|
||||
@@ -1801,5 +1875,5 @@
|
||||
</column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
Reference in New Issue
Block a user