"Fossies" - the Fresh Open Source Software Archive

Member "icingaweb2-2.11.4/schema/mysql-upgrades/2.9.0.sql" (26 Jan 2023, 544 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                int(10) unsigned NOT NULL AUTO_INCREMENT,
    3   username          varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
    4   passphrase        varchar(256) NOT NULL,
    5   random_iv         varchar(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 ON UPDATE CURRENT_TIMESTAMP,
   10   PRIMARY KEY (id)
   11 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;