IDEMPIERE-752 AD_SysConfig must have a unique key by client+org+name / based on patch from Richard Morales

This commit is contained in:
Carlos Ruiz 2013-03-17 15:33:47 -05:00
parent 33648d7b56
commit 0fbe2781f4
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
CREATE UNIQUE INDEX ad_sysconfig_org_name
ON AD_SysConfig (ad_client_id, ad_org_id,name)
;
SELECT register_migration_script('201303151018_IDEMPIERE-752.sql') FROM dual
;

View File

@ -0,0 +1,6 @@
CREATE UNIQUE INDEX ad_sysconfig_org_name
ON AD_SysConfig (ad_client_id, ad_org_id,name)
;
SELECT register_migration_script('201303151018_IDEMPIERE-752.sql') FROM dual
;