mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-04 22:32:55 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
28 lines
782 B
SQL
28 lines
782 B
SQL
-- SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
CREATE TABLE director_datafield_category (
|
|
id serial,
|
|
category_name character varying(255) NOT NULL,
|
|
description text DEFAULT NULL,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE UNIQUE INDEX datafield_category_name ON director_datafield_category (category_name);
|
|
|
|
|
|
ALTER TABLE director_datafield
|
|
ADD COLUMN category_id integer DEFAULT NULL,
|
|
ADD CONSTRAINT director_datafield_category
|
|
FOREIGN KEY (category_id)
|
|
REFERENCES director_datafield_category (id)
|
|
ON DELETE RESTRICT
|
|
ON UPDATE CASCADE;
|
|
|
|
CREATE INDEX datafield_category ON director_datafield (category_id);
|
|
|
|
|
|
INSERT INTO director_schema_migration
|
|
(schema_version, migration_time)
|
|
VALUES (168, NOW());
|