From 72dd247c3f52171f488c9f195539ab9698f0aacd Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 30 Sep 2013 21:33:01 -0500 Subject: [PATCH] IDEMPIERE-1411 Delete unused roles --- .../i1.0z/oracle/201309302132_IDEMPIERE-1411.sql | 16 ++++++++++++++++ .../postgresql/201309302132_IDEMPIERE-1411.sql | 13 +++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 migration/i1.0z/oracle/201309302132_IDEMPIERE-1411.sql create mode 100644 migration/i1.0z/postgresql/201309302132_IDEMPIERE-1411.sql diff --git a/migration/i1.0z/oracle/201309302132_IDEMPIERE-1411.sql b/migration/i1.0z/oracle/201309302132_IDEMPIERE-1411.sql new file mode 100644 index 0000000000..434a812d4c --- /dev/null +++ b/migration/i1.0z/oracle/201309302132_IDEMPIERE-1411.sql @@ -0,0 +1,16 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Sep 30, 2013 9:31:17 PM COT +-- IDEMPIERE-1411 Delete unused roles +DELETE FROM AD_Role WHERE AD_Role_ID=50002 +; + +-- Sep 30, 2013 9:31:32 PM COT +-- IDEMPIERE-1411 Delete unused roles +DELETE FROM AD_Role WHERE AD_Role_ID=50001 +; + +SELECT register_migration_script('201309302132_IDEMPIERE-1411.sql') FROM dual +; + diff --git a/migration/i1.0z/postgresql/201309302132_IDEMPIERE-1411.sql b/migration/i1.0z/postgresql/201309302132_IDEMPIERE-1411.sql new file mode 100644 index 0000000000..bbf50608b5 --- /dev/null +++ b/migration/i1.0z/postgresql/201309302132_IDEMPIERE-1411.sql @@ -0,0 +1,13 @@ +-- Sep 30, 2013 9:31:17 PM COT +-- IDEMPIERE-1411 Delete unused roles +DELETE FROM AD_Role WHERE AD_Role_ID=50002 +; + +-- Sep 30, 2013 9:31:32 PM COT +-- IDEMPIERE-1411 Delete unused roles +DELETE FROM AD_Role WHERE AD_Role_ID=50001 +; + +SELECT register_migration_script('201309302132_IDEMPIERE-1411.sql') FROM dual +; +