Fixed issue of fileselect
This commit is contained in:
@@ -2550,5 +2550,16 @@
|
||||
</column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="03-03-2025_RK_120515" author="Rajesh Khore">
|
||||
|
||||
<sql dbms="postgresql">select
|
||||
setval('gepafin_schema.form_field_id_seq', (select
|
||||
max(id)+1
|
||||
from gepafin_schema.form_field), false)
|
||||
</sql>
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_form_field_data_03-03-2025.sql"/>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
INSERT INTO FORM_FIELD (SORT_ORDER, NAME, LABEL, DESCRIPTION, SETTINGS, VALIDATORS, CREATED_DATE, UPDATED_DATE)
|
||||
VALUES
|
||||
(
|
||||
23,
|
||||
'fileselect',
|
||||
'Caricamento File',
|
||||
'Per selezionare di documenti o immagini',
|
||||
'[{name: "label",value: "Seleziona File"},{ name: "isDelegation", value: false }]',
|
||||
'{"isRequired":false}',
|
||||
CURRENT_TIMESTAMP,
|
||||
CURRENT_TIMESTAMP
|
||||
);
|
||||
Reference in New Issue
Block a user