From ac294805eaeff3e26069a237408ba62efd4fccbf Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 12 Jun 2023 12:24:22 +0200 Subject: [PATCH] #11437 unify session_max_time_expire with mr --- pandora_console/pandoradb.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index a6a368cd72..f9a206d326 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1327,7 +1327,7 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `allowed_ip_active` TINYINT UNSIGNED DEFAULT 0, `allowed_ip_list` TEXT, `auth_token_secret` VARCHAR(45) DEFAULT NULL, - `session_max_time_expire` INT signed NOT NULL DEFAULT 0, + `session_max_time_expire` INT NOT NULL DEFAULT 0, CONSTRAINT `fk_filter_id` FOREIGN KEY (`id_filter`) REFERENCES tevent_filter (`id_filter`) ON DELETE SET NULL, UNIQUE KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;