diff --git a/migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql b/migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql new file mode 100644 index 0000000000..3ac7933de2 --- /dev/null +++ b/migration/iD10/oracle/202310161235_IDEMPIERE-5883.sql @@ -0,0 +1,10 @@ +-- IDEMPIERE-5883 Improve default for Receipt parameter in Payment Info +SELECT register_migration_script('202310161235_IDEMPIERE-5883.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 16, 2023, 12:35:12 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=17, AD_Reference_Value_ID=319, DefaultValue=NULL,Updated=TO_TIMESTAMP('2023-10-16 12:35:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200085 +; + diff --git a/migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql b/migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql new file mode 100644 index 0000000000..a206680b37 --- /dev/null +++ b/migration/iD10/postgresql/202310161235_IDEMPIERE-5883.sql @@ -0,0 +1,7 @@ +-- IDEMPIERE-5883 Improve default for Receipt parameter in Payment Info +SELECT register_migration_script('202310161235_IDEMPIERE-5883.sql') FROM dual; + +-- Oct 16, 2023, 12:35:12 PM CEST +UPDATE AD_InfoColumn SET AD_Reference_ID=17, AD_Reference_Value_ID=319, DefaultValue=NULL,Updated=TO_TIMESTAMP('2023-10-16 12:35:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200085 +; +