mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-12 16:34:26 +02:00
10 lines
230 B
SQL
10 lines
230 B
SQL
ALTER TABLE import_source
|
|
ADD COLUMN description TEXT DEFAULT NULL;
|
|
|
|
ALTER TABLE sync_rule
|
|
ADD COLUMN description TEXT DEFAULT NULL;
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (137, NOW());
|