mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
13 lines
265 B
SQL
13 lines
265 B
SQL
|
|
UPDATE icinga_command_argument
|
|
SET argument_format = NULL
|
|
WHERE argument_value IS NULL;
|
|
|
|
UPDATE icinga_command_argument
|
|
SET set_if_format = NULL
|
|
WHERE set_if IS NULL;
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (154, NOW());
|