Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • change parent/version from 3.0.3 to 3.0.4
  • change properties/syncope.version from 3.0.3 to 3.0.4

Internal Storage

First remove the index with

Code Block
languagesql
DROP INDEX AnyObject_name;

or (if on MySQL / MariaDB)

Code Block
languagesql
ALTER TABLE AnyObject DROP INDEX AnyObject_name;

then create the new index with

Code Block
languagesql
CREATE UNIQUE INDEX AnyObject_name ON AnyObject(type_id,name);