"Fossies" - the Fresh Open Source Software Archive

Member "icingaweb2-2.11.4/schema/pgsql-upgrades/2.9.0.sql" (26 Jan 2023, 550 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_rememberme" (
    2   "id"                  serial,
    3   "username"            character varying(254) NOT NULL,
    4   "passphrase"          character varying(256) NOT NULL,
    5   "random_iv"           character varying(24) NOT NULL,
    6   "http_user_agent"     text NOT NULL,
    7   "expires_at"          timestamp NULL DEFAULT NULL,
    8   "ctime"               timestamp NULL DEFAULT NULL,
    9   "mtime"               timestamp NULL DEFAULT NULL
   10 );
   11 
   12 ALTER TABLE ONLY "icingaweb_rememberme"
   13   ADD CONSTRAINT pk_icingaweb_rememberme
   14   PRIMARY KEY (
   15     "id"
   16 );