mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-05-21 01:15:26 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
19 lines
661 B
SQL
19 lines
661 B
SQL
-- SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
CREATE TABLE "icingaweb_rememberme" (
|
|
"id" serial,
|
|
"username" character varying(254) NOT NULL,
|
|
"passphrase" character varying(256) NOT NULL,
|
|
"random_iv" character varying(24) NOT NULL,
|
|
"http_user_agent" text NOT NULL,
|
|
"expires_at" timestamp NULL DEFAULT NULL,
|
|
"ctime" timestamp NULL DEFAULT NULL,
|
|
"mtime" timestamp NULL DEFAULT NULL
|
|
);
|
|
|
|
ALTER TABLE ONLY "icingaweb_rememberme"
|
|
ADD CONSTRAINT pk_icingaweb_rememberme
|
|
PRIMARY KEY (
|
|
"id"
|
|
);
|