mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-03 20:40:06 -05:00
10 lines
275 B
SQL
10 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()));
|