Eric Lippmann 8c52f68fd6 Merge pull request #4964 from Icinga/packaging
Packaging Adjustments

(cherry picked from commit 57c52cadfa82e0a3cb06ac2f8a14ea3bb3060f74)
2023-01-12 11:19:11 +01:00

11 lines
275 B
SQL

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()));