"Fossies" - the Fresh Open Source Software Archive 
Member "icingaweb2-2.11.4/schema/pgsql-upgrades/2.11.0.sql" (26 Jan 2023, 275 Bytes) of package /linux/www/icingaweb2-2.11.4.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PL/SQL source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 CREATE TABLE "icingaweb_schema" (
2 "id" serial,
3 "version" smallint NOT NULL,
4 "timestamp" int NOT NULL,
5
6 CONSTRAINT pk_icingaweb_schema PRIMARY KEY ("id")
7 );
8
9 INSERT INTO icingaweb_schema ("version", "timestamp")
10 VALUES (6, extract(epoch from now()));