From 0e8b2d53691cccd9fadb0598c4a8f5c195ff5c4c Mon Sep 17 00:00:00 2001 From: iglocska Date: Tue, 1 Jun 2021 21:30:59 +0200 Subject: [PATCH] fix: [mysql.sql] updated --- INSTALL/mysql.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/INSTALL/mysql.sql b/INSTALL/mysql.sql index 0d52940..88a3040 100644 --- a/INSTALL/mysql.sql +++ b/INSTALL/mysql.sql @@ -196,6 +196,8 @@ CREATE TABLE `local_tools` ( `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `connector` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `settings` text COLLATE utf8mb4_unicode_ci, + `exposed` tinyint(1) NOT NULL, + `description` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `name` (`name`), KEY `connector` (`connector`) @@ -364,6 +366,7 @@ CREATE TABLE `meta_templates` ( `uuid` varchar(40) CHARACTER SET ascii, `source` varchar(191), `enabled` tinyint(1) DEFAULT 0, + `is_default` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `scope` (`scope`), KEY `source` (`source`),