mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 00:22:45 -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.
14 lines
655 B
SQL
14 lines
655 B
SQL
-- SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
CREATE TABLE `icingaweb_rememberme`(
|
|
id int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
username varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
passphrase varchar(256) NOT NULL,
|
|
random_iv varchar(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 ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (id)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
|