Source changes

POM

In the root pom.xml:

  • 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

Index update

First remove the index with

DROP INDEX AnyObject_name;

or (if on MySQL / MariaDB)

ALTER TABLE AnyObject DROP INDEX AnyObject_name;

then create the new index with

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

Table rename

ALTER TABLE TicketExpiration RENAME TO TicketExpirationPolicy;

or (if on Oracle)

ALTER TABLE [SCHEMA_NAME.]TICKETEXPIRATION rename to TICKETEXPIRATIONPOLICY
  • No labels