From 410338a9955de48208e51197d3c8272f3733963e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sun, 25 Oct 2015 14:09:16 -0500 Subject: [PATCH] QA for r3 - fix wrong entity types on official dict --- .../oracle/201510251408_FixEntityTypes.sql | 25 +++++++++++++++++++ .../201510251408_FixEntityTypes.sql | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 migration/i2.1z/oracle/201510251408_FixEntityTypes.sql create mode 100644 migration/i2.1z/postgresql/201510251408_FixEntityTypes.sql diff --git a/migration/i2.1z/oracle/201510251408_FixEntityTypes.sql b/migration/i2.1z/oracle/201510251408_FixEntityTypes.sql new file mode 100644 index 0000000000..0e8c745802 --- /dev/null +++ b/migration/i2.1z/oracle/201510251408_FixEntityTypes.sql @@ -0,0 +1,25 @@ +update ad_field set entitytype='D' where ad_field_id in ( +203480, +203482, +203483, +203484, +203486, +203485, +203487, +203488); + +update ad_column set entitytype='D' where ad_column_id in ( +211812, +211814, +211815, +211816, +211817, +211818); + +update ad_indexcolumn set entitytype='D' where ad_indexcolumn_id in ( +201254, +201255, +201269); +SELECT register_migration_script('201510251408_FixEntityTypes.sql') FROM dual +; + diff --git a/migration/i2.1z/postgresql/201510251408_FixEntityTypes.sql b/migration/i2.1z/postgresql/201510251408_FixEntityTypes.sql new file mode 100644 index 0000000000..0e8c745802 --- /dev/null +++ b/migration/i2.1z/postgresql/201510251408_FixEntityTypes.sql @@ -0,0 +1,25 @@ +update ad_field set entitytype='D' where ad_field_id in ( +203480, +203482, +203483, +203484, +203486, +203485, +203487, +203488); + +update ad_column set entitytype='D' where ad_column_id in ( +211812, +211814, +211815, +211816, +211817, +211818); + +update ad_indexcolumn set entitytype='D' where ad_indexcolumn_id in ( +201254, +201255, +201269); +SELECT register_migration_script('201510251408_FixEntityTypes.sql') FROM dual +; +