IDEMPIERE-4823 RV_C_Invoice does not have a key column (#715)

* IDEMPIERE-4823 RV_C_Invoice does not have a key column

* IDEMPIERE-4823 RV_C_Invoice does not have a key column - Move scripts to 8.2 folder
This commit is contained in:
Diego Ruiz 2021-06-10 17:07:52 +02:00 committed by GitHub
parent 5811f87f19
commit 2110322149
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,10 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-4823 - RV_C_Invoice does not have a key column
-- Jun 9, 2021, 8:51:34 PM CEST
UPDATE AD_Column SET IsKey='Y', IsUpdateable='N', IsAllowCopy='N',Updated=TO_DATE('2021-06-09 20:51:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=5522
;
SELECT register_migration_script('202106092053_IDEMPIERE-4823.sql') FROM dual
;

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-4823 - RV_C_Invoice does not have a key column
-- Jun 9, 2021, 8:51:34 PM CEST
UPDATE AD_Column SET IsKey='Y', IsUpdateable='N', IsAllowCopy='N',Updated=TO_TIMESTAMP('2021-06-09 20:51:34','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Column_ID=5522
;
SELECT register_migration_script('202106092053_IDEMPIERE-4823.sql') FROM dual
;