Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IDEMPIERE-5705 Field Event Change Log is not read only #1816

Merged
merged 1 commit into from May 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions migration/iD10/oracle/202305011402_IDEMPIERE-5705.sql
@@ -0,0 +1,14 @@
-- IDEMPIERE-5705 Field Event Change Log is not read only
SELECT register_migration_script('202305011402_IDEMPIERE-5705.sql') FROM dual;

SET SQLBLANKLINES ON
SET DEFINE OFF

-- May 1, 2023, 2:02:29 PM CEST
UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2023-05-01 14:02:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54396
;

-- May 1, 2023, 2:02:37 PM CEST
UPDATE AD_Column SET IsUpdateable='N',Updated=TO_TIMESTAMP('2023-05-01 14:02:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54352
;

11 changes: 11 additions & 0 deletions migration/iD10/postgresql/202305011402_IDEMPIERE-5705.sql
@@ -0,0 +1,11 @@
-- IDEMPIERE-5705 Field Event Change Log is not read only
SELECT register_migration_script('202305011402_IDEMPIERE-5705.sql') FROM dual;

-- May 1, 2023, 2:02:29 PM CEST
UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2023-05-01 14:02:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=54396
;

-- May 1, 2023, 2:02:37 PM CEST
UPDATE AD_Column SET IsUpdateable='N',Updated=TO_TIMESTAMP('2023-05-01 14:02:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=54352
;