mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
Packaging Adjustments (cherry picked from commit 57c52cadfa82e0a3cb06ac2f8a14ea3bb3060f74)
11 lines
275 B
SQL
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()));
|