mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 00:44:25 +02:00
12 lines
372 B
SQL
12 lines
372 B
SQL
ALTER TABLE icinga_user_states_set
|
|
DROP CONSTRAINT icinga_user_states_set_pkey,
|
|
ADD PRIMARY KEY (user_id, property, merge_behaviour);
|
|
|
|
ALTER TABLE icinga_user_types_set
|
|
DROP CONSTRAINT icinga_user_types_set_pkey,
|
|
ADD PRIMARY KEY (user_id, property, merge_behaviour);
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (79, NOW());
|