From 519b5e9cac56a84dfcc3c18a75f418ee03419a62 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 29 Mar 2011 22:06:02 -0500 Subject: [PATCH] UUID Generator -> Found a dictionary error on the definition of the AD_TreeBar table - missing one of the parent columns --- migration/360lts-release/oracle/792_FixDictionaryError.sql | 4 ++++ .../360lts-release/postgresql/792_FixDictionaryError.sql | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 migration/360lts-release/oracle/792_FixDictionaryError.sql create mode 100644 migration/360lts-release/postgresql/792_FixDictionaryError.sql diff --git a/migration/360lts-release/oracle/792_FixDictionaryError.sql b/migration/360lts-release/oracle/792_FixDictionaryError.sql new file mode 100644 index 0000000000..917ce37511 --- /dev/null +++ b/migration/360lts-release/oracle/792_FixDictionaryError.sql @@ -0,0 +1,4 @@ +-- Mar 29, 2011 2:31:13 PM COT +-- Fix dictionary error - parent column not defined for AD_TreeBar +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_DATE('2011-03-29 14:31:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=6213 +; diff --git a/migration/360lts-release/postgresql/792_FixDictionaryError.sql b/migration/360lts-release/postgresql/792_FixDictionaryError.sql new file mode 100644 index 0000000000..643fb58109 --- /dev/null +++ b/migration/360lts-release/postgresql/792_FixDictionaryError.sql @@ -0,0 +1,4 @@ +-- Mar 29, 2011 2:31:13 PM COT +-- Fix dictionary error - parent column not defined for AD_TreeBar +UPDATE AD_Column SET IsParent='Y', IsUpdateable='N',Updated=TO_TIMESTAMP('2011-03-29 14:31:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=6213 +;