Beneficiary GDPR

This commit is contained in:
harish
2024-10-07 18:42:59 +05:30
parent 65169e54c3
commit 654beb1c8a
6 changed files with 108 additions and 3 deletions

View File

@@ -879,5 +879,24 @@
<sqlFile dbms="postgresql"
path="classpath:db/dump/updated_form_field_data_03-10-2024_1.sql" />
</changeSet>
<changeSet id="07-10-2024_1" author="Harish Bagora">
<addColumn tableName="beneficiary">
<column name="PRIVACY" type="BOOLEAN">
<constraints nullable="false"/>
</column>
<column name="TERMS" type="BOOLEAN">
<constraints nullable="false"/>
</column>
<column name="GDPR_READ" type="BOOLEAN">
<constraints nullable="false"/>
</column>
<column name="MARKETING" type="BOOLEAN"/>
<column name="OFFERS" type="BOOLEAN"/>
<column name="THIRD_PARTY" type="BOOLEAN"/>
<column name="GDPR_MATERIALE" type="BOOLEAN"/>
<column name="GDPR_ELABORAZIONE" type="BOOLEAN"/>
<column name="GDPR_COMUNICAZIONE" type="BOOLEAN"/>
</addColumn>
</changeSet>
</databaseChangeLog>