mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-21 12:54:26 +02:00
schema/mysql: fix copy & paste errors
This commit is contained in:
parent
82a893b06c
commit
a64d7d3072
19
schema/mysql-changes/upgrade_41.sql
Normal file
19
schema/mysql-changes/upgrade_41.sql
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
DROP TABLE icinga_command_field;
|
||||||
|
|
||||||
|
CREATE TABLE icinga_command_field (
|
||||||
|
command_id INT(10) UNSIGNED NOT NULL,
|
||||||
|
datafield_id INT(10) UNSIGNED NOT NULL,
|
||||||
|
is_required ENUM('y', 'n') NOT NULL,
|
||||||
|
PRIMARY KEY (command_id, datafield_id),
|
||||||
|
CONSTRAINT icinga_command_field_command
|
||||||
|
FOREIGN KEY command_id (command_id)
|
||||||
|
REFERENCES icinga_command (id)
|
||||||
|
ON DELETE CASCADE
|
||||||
|
ON UPDATE CASCADE,
|
||||||
|
CONSTRAINT icinga_command_field_datafield
|
||||||
|
FOREIGN KEY datafield(datafield_id)
|
||||||
|
REFERENCES director_datafield (id)
|
||||||
|
ON DELETE CASCADE
|
||||||
|
ON UPDATE CASCADE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
@ -293,9 +293,9 @@ CREATE TABLE icinga_command_field (
|
|||||||
datafield_id INT(10) UNSIGNED NOT NULL,
|
datafield_id INT(10) UNSIGNED NOT NULL,
|
||||||
is_required ENUM('y', 'n') NOT NULL,
|
is_required ENUM('y', 'n') NOT NULL,
|
||||||
PRIMARY KEY (command_id, datafield_id),
|
PRIMARY KEY (command_id, datafield_id),
|
||||||
CONSTRAINT icinga_command_field_command_argument
|
CONSTRAINT icinga_command_field_command
|
||||||
FOREIGN KEY host(command_id)
|
FOREIGN KEY command_id (command_id)
|
||||||
REFERENCES icinga_command_argument (id)
|
REFERENCES icinga_command (id)
|
||||||
ON DELETE CASCADE
|
ON DELETE CASCADE
|
||||||
ON UPDATE CASCADE,
|
ON UPDATE CASCADE,
|
||||||
CONSTRAINT icinga_command_field_datafield
|
CONSTRAINT icinga_command_field_datafield
|
||||||
|
Loading…
x
Reference in New Issue
Block a user