From 749a0bacd445d9ea66f15ef643b79e3bc1bdff04 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 23 Apr 2007 04:48:02 +0000 Subject: [PATCH] Bug Fix [ 1705537 ] Import Account parent key not shown --- migration/316-trunk/005_fix_bug_1705537.sql | 7 +++++++ migration/316-trunk/postgresql/005_fix_bug_1705537.sql | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 migration/316-trunk/005_fix_bug_1705537.sql create mode 100644 migration/316-trunk/postgresql/005_fix_bug_1705537.sql diff --git a/migration/316-trunk/005_fix_bug_1705537.sql b/migration/316-trunk/005_fix_bug_1705537.sql new file mode 100644 index 0000000000..4ab6d84176 --- /dev/null +++ b/migration/316-trunk/005_fix_bug_1705537.sql @@ -0,0 +1,7 @@ +UPDATE AD_COLUMN + SET ad_reference_value_id = 182, + updated = TO_DATE ('2007-04-22 23:11:58', 'YYYY-MM-DD HH24:MI:SS'), + updatedby = 100 + WHERE ad_column_id = 7968; + +COMMIT; diff --git a/migration/316-trunk/postgresql/005_fix_bug_1705537.sql b/migration/316-trunk/postgresql/005_fix_bug_1705537.sql new file mode 100644 index 0000000000..35959ee371 --- /dev/null +++ b/migration/316-trunk/postgresql/005_fix_bug_1705537.sql @@ -0,0 +1,7 @@ +UPDATE AD_COLUMN + SET ad_reference_value_id = 182, + updated = TO_TIMESTAMP ('2007-04-22 23:11:58', 'YYYY-MM-DD HH24:MI:SS'), + updatedby = 100 + WHERE ad_column_id = 7968; + +COMMIT; \ No newline at end of file