Updated form field response bean

This commit is contained in:
rajesh
2024-08-30 11:52:31 +05:30
parent ea09f62b00
commit 7af37db2ff
20 changed files with 229 additions and 39 deletions

View File

@@ -395,7 +395,7 @@
<column name="country" value="Italy"/>
</insert>
</changeSet>
<changeSet id="28-08-2024_1" author="Rajesh Khore">
<changeSet id="29-08-2024_1" author="Rajesh Khore">
<createTable tableName="form">
<column name="id" type="INTEGER" autoIncrement="true">
<constraints nullable="false" primaryKey="true" primaryKeyName="form_pkey"/>
@@ -438,14 +438,17 @@
<column name="id" type="INTEGER" autoIncrement="true">
<constraints nullable="false" primaryKey="true" primaryKeyName="form_field_pkey"/>
</column>
<column name="name" type="VARCHAR(255)">
<constraints nullable="true"/>
</column>
<column name="label" type="VARCHAR(255)">
<constraints nullable="false"/>
</column>
<column name="definition" type="TEXT">
<column name="settings" type="TEXT">
<constraints nullable="false"/>
</column>
<column name="is_active" type="BOOLEAN">
<constraints nullable="true"/>
<column name="validators" type="TEXT">
<constraints nullable="false"/>
</column>
<column name="created_date" type="TIMESTAMP WITHOUT TIME ZONE">
<constraints nullable="false"/>