From 94461d87c5313eac529c744e881b51c5091d6e0c Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 26 Mar 2011 00:42:47 -0500 Subject: [PATCH] FR [1782412] - Add Document Action Access Functionality - Fix wrong columntype on postgresql http://sourceforge.net/support/tracker.php?aid=1782412 script 330-331b/postgresql/039_FR_1782412_PG.sql defined the columns created and updated with type DATE and it must be TIMESTAMP --- .../oracle/777_FR1782412_WrongColumnType.sql | 2 ++ .../postgresql/777_FR1782412_WrongColumnType.sql | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 migration/360lts-release/oracle/777_FR1782412_WrongColumnType.sql create mode 100644 migration/360lts-release/postgresql/777_FR1782412_WrongColumnType.sql diff --git a/migration/360lts-release/oracle/777_FR1782412_WrongColumnType.sql b/migration/360lts-release/oracle/777_FR1782412_WrongColumnType.sql new file mode 100644 index 0000000000..12e74bf04d --- /dev/null +++ b/migration/360lts-release/oracle/777_FR1782412_WrongColumnType.sql @@ -0,0 +1,2 @@ +-- FR 1782412 - Add Document Action Access Functionality - wrong column type +-- Just for postgresql diff --git a/migration/360lts-release/postgresql/777_FR1782412_WrongColumnType.sql b/migration/360lts-release/postgresql/777_FR1782412_WrongColumnType.sql new file mode 100644 index 0000000000..80d14f307c --- /dev/null +++ b/migration/360lts-release/postgresql/777_FR1782412_WrongColumnType.sql @@ -0,0 +1,9 @@ +-- 15-ene-2011 11:04:15 COT +-- FR 1782412 - Add Document Action Access Functionality - wrong column type +INSERT INTO t_alter_column values('ad_document_action_access','Updated','TIMESTAMP',null,null) +; + +-- 15-ene-2011 11:04:36 COT +INSERT INTO t_alter_column values('ad_document_action_access','Created','TIMESTAMP',null,null) +; +