diff options
Diffstat (limited to '')
-rw-r--r-- | schema/pgsql-migrations/upgrade_156.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/schema/pgsql-migrations/upgrade_156.sql b/schema/pgsql-migrations/upgrade_156.sql new file mode 100644 index 0000000..aa80cb3 --- /dev/null +++ b/schema/pgsql-migrations/upgrade_156.sql @@ -0,0 +1,6 @@ +DROP INDEX IF EXISTS command_object_name; +CREATE UNIQUE INDEX command_object_name ON icinga_command (object_name); + +INSERT INTO director_schema_migration + (schema_version, migration_time) + VALUES (156, NOW()); |