Updated form field response bean
This commit is contained in:
@@ -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"/>
|
||||
|
||||
Reference in New Issue
Block a user