Searched defs:updateobjectproperties (Results 1 - 1 of 1) sorted by relevance

/forgerock/openidm-v4/openidm-zip/src/main/resources/db/mssql/scripts/
H A Dopenidm.sql634 -- Table `openidm`.`updateobjectproperties`
636 IF NOT EXISTS (SELECT name FROM sysobjects where name='updateobjectproperties' AND xtype='U')
638 CREATE TABLE [openidm].[updateobjectproperties] table
650 CREATE INDEX fk_updateobjectproperties_updateobjects ON [openidm].[updateobjectproperties] (updateobjects_id ASC);
651 CREATE INDEX idx_updateobjectproperties_propkey ON [openidm].[updateobjectproperties] (propkey ASC);
652 CREATE INDEX idx_updateobjectproperties_propvalue ON [openidm].[updateobjectproperties] (propvalue ASC);

Completed in 30 milliseconds