diff --git a/migration/i9/oracle/202201300826_IDEMPIERE-5175.sql b/migration/i9/oracle/202201300826_IDEMPIERE-5175.sql new file mode 100644 index 0000000000..fd676dd9b6 --- /dev/null +++ b/migration/i9/oracle/202201300826_IDEMPIERE-5175.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- DateAct do not set from Journal in GL Journal Batch +-- 29-Jan-2022, 5:14:32 PM IST +UPDATE AD_Field SET DefaultValue='@1|DateAcct@', AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, IsToolbarButton=NULL,Updated=TO_DATE('2022-01-29 17:14:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=1293 +; + + +SELECT register_migration_script('202201300826_IDEMPIERE-5175.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i9/postgresql/202201300826_IDEMPIERE-5175.sql b/migration/i9/postgresql/202201300826_IDEMPIERE-5175.sql new file mode 100644 index 0000000000..aaaf49b64f --- /dev/null +++ b/migration/i9/postgresql/202201300826_IDEMPIERE-5175.sql @@ -0,0 +1,8 @@ +-- DateAct do not set from Journal in GL Journal Batch +-- 29-Jan-2022, 5:14:32 PM IST +UPDATE AD_Field SET DefaultValue='@1|DateAcct@', AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, IsToolbarButton=NULL,Updated=TO_TIMESTAMP('2022-01-29 17:14:32','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=1293 +; + + +SELECT register_migration_script('202201300826_IDEMPIERE-5175.sql') FROM dual +; \ No newline at end of file