mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-28 04:35:53 -04:00
18 lines
487 B
MySQL
18 lines
487 B
MySQL
|
|
DROP TABLE director_datalist_value;
|
||
|
|
|
||
|
|
CREATE TABLE director_datalist_entry (
|
||
|
|
list_id integer NOT NULL,
|
||
|
|
entry_name character varying(255) DEFAULT NULL,
|
||
|
|
entry_value text DEFAULT NULL,
|
||
|
|
format enum_property_format,
|
||
|
|
PRIMARY KEY (list_id, entry_name),
|
||
|
|
CONSTRAINT director_datalist_entry_datalist
|
||
|
|
FOREIGN KEY (list_id)
|
||
|
|
REFERENCES director_datalist (id)
|
||
|
|
ON DELETE CASCADE
|
||
|
|
ON UPDATE CASCADE
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE INDEX datalist_entry_datalist ON director_datalist_entry (list_id);
|
||
|
|
|