mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-06 07:40:16 +02:00
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()));
|