mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-05-21 01:15:26 -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.
13 lines
386 B
SQL
13 lines
386 B
SQL
-- SPDX-FileCopyrightText: 2022 Icinga GmbH <https://icinga.com>
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
CREATE TABLE "icingaweb_schema" (
|
|
"id" serial,
|
|
"version" smallint NOT NULL,
|
|
"timestamp" int NOT NULL,
|
|
|
|
CONSTRAINT pk_icingaweb_schema PRIMARY KEY ("id")
|
|
);
|
|
|
|
INSERT INTO icingaweb_schema ("version", "timestamp")
|
|
VALUES (6, extract(epoch from now()));
|