From f026c76f69bd2c56fdfb84a800f8a9742884669e Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 18 Apr 2023 11:27:07 +0200 Subject: [PATCH 1/2] #10960 fix mr63.sql add tsesion_filter --- pandora_console/extras/mr/63.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pandora_console/extras/mr/63.sql diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql new file mode 100644 index 0000000000..079806d36b --- /dev/null +++ b/pandora_console/extras/mr/63.sql @@ -0,0 +1,16 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `tsesion_filter` ( + `id_filter` INT NOT NULL AUTO_INCREMENT, + `id_name` TEXT NULL, + `text` TEXT NULL, + `period` TEXT NULL, + `ip` TEXT NULL, + `type` TEXT NULL, + `user` TEXT NULL, + PRIMARY KEY (`id_filter`) +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + +ALTER TABLE tsesion_filter CONVERT TO CHARACTER SET UTF8MB4; + +COMMIT; From 6a2d5165f81b236d9274f12e782f6b30048005d1 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 24 Apr 2023 07:48:32 +0200 Subject: [PATCH 2/2] #10960 remove alter table MR 63.sql --- pandora_console/extras/mr/63.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql index 079806d36b..2328603de2 100644 --- a/pandora_console/extras/mr/63.sql +++ b/pandora_console/extras/mr/63.sql @@ -11,6 +11,4 @@ CREATE TABLE IF NOT EXISTS `tsesion_filter` ( PRIMARY KEY (`id_filter`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; -ALTER TABLE tsesion_filter CONVERT TO CHARACTER SET UTF8MB4; - COMMIT;