updated form field data
This commit is contained in:
110
src/main/resources/db/dump/update_form_field_data_04_09_2024.sql
Normal file
110
src/main/resources/db/dump/update_form_field_data_04_09_2024.sql
Normal file
@@ -0,0 +1,110 @@
|
||||
INSERT INTO FORM_FIELD (NAME, LABEL, SETTINGS, VALIDATORS, CREATED_DATE, UPDATED_DATE) VALUES
|
||||
(
|
||||
'textinput',
|
||||
'Text Input',
|
||||
'[
|
||||
{"name": "label", "value": "Text input"},
|
||||
{"name": "placeholder", "value": "Placeholder text"}
|
||||
]',
|
||||
'{
|
||||
"isRequired": false,
|
||||
"minLength": null,
|
||||
"maxLength": null,
|
||||
"pattern": null,
|
||||
"custom": null
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
),
|
||||
(
|
||||
'textarea',
|
||||
'Text Area',
|
||||
'[
|
||||
{"name": "label", "value": "Text area"},
|
||||
{"name": "placeholder", "value": "Placeholder text"}
|
||||
]',
|
||||
'{
|
||||
"isRequired": false,
|
||||
"minLength": null,
|
||||
"maxLength": null,
|
||||
"pattern": null,
|
||||
"custom": null
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
),
|
||||
(
|
||||
'numberinput',
|
||||
'Number Input',
|
||||
'[
|
||||
{"name": "label", "value": "Number"},
|
||||
{"name": "placeholder", "value": 0}
|
||||
]',
|
||||
'{
|
||||
"isRequired": false,
|
||||
"min": null,
|
||||
"max": null,
|
||||
"pattern": null,
|
||||
"custom": null
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
),
|
||||
(
|
||||
'textinput',
|
||||
'P.IVA',
|
||||
'[
|
||||
{"name": "label", "value": "P.IVA"},
|
||||
{"name": "placeholder", "value": "Insert p.iva number"}
|
||||
]',
|
||||
'{
|
||||
"isRequired": true,
|
||||
"minLength": null,
|
||||
"maxLength": null,
|
||||
"pattern": null,
|
||||
"custom": "isValidVAT"
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
),
|
||||
(
|
||||
'radio',
|
||||
'Radio Input',
|
||||
'[
|
||||
{"name": "label", "value": "Radio input"},
|
||||
{"name": "options", "value": []}
|
||||
]',
|
||||
'{
|
||||
"isRequired": false,
|
||||
"custom": null
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
),
|
||||
(
|
||||
'select',
|
||||
'Select',
|
||||
'[
|
||||
{"name": "label", "value": "Select"},
|
||||
{"name": "options", "value": []}
|
||||
]',
|
||||
'{
|
||||
"isRequired": false,
|
||||
"custom": null
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
),
|
||||
(
|
||||
'datepicker',
|
||||
'Datepicker',
|
||||
'[
|
||||
{"name": "label", "value": "Datepicker"}
|
||||
]',
|
||||
'{
|
||||
"isRequired": false,
|
||||
"custom": null
|
||||
}',
|
||||
'2024-08-30T09:50:31.926Z',
|
||||
'2024-08-30T09:50:31.926Z'
|
||||
);
|
||||
Reference in New Issue
Block a user