IDEMPIERE-765 Client Name must be non unique / search key must be unique

This commit is contained in:
Richard Morales 2013-03-22 16:29:24 -05:00
parent fefc1c0ee3
commit 613a7e782e
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-765 Client Name must be non unique / search key must be unique
DROP INDEX ad_client_name;
CREATE UNIQUE INDEX ad_client_value
ON AD_Client (value);
SELECT register_migration_script('201303151137_IDEMPIERE-765.sql') FROM dual;

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-765 Client Name must be non unique / search key must be unique
DROP INDEX ad_client_name;
CREATE UNIQUE INDEX ad_client_value
ON AD_Client (value);
SELECT register_migration_script('201303151137_IDEMPIERE-765.sql') FROM dual;