mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
6 lines
239 B
SQL
6 lines
239 B
SQL
ALTER TABLE icinga_endpoint
|
|
MODIFY object_type ENUM('object', 'template', 'external_object') NOT NULL,
|
|
ADD COLUMN host VARCHAR(255) DEFAULT NULL COMMENT 'IP address / hostname of remote node' AFTER object_name,
|
|
DROP column address;
|
|
|