From 6035d05d65b77030a2f02b5ec560ee4857ded727 Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 8 Mar 2021 14:44:09 +0100 Subject: [PATCH] Update 33.php --- system/migrations/33.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/system/migrations/33.php b/system/migrations/33.php index e69de29b..39d48ed4 100644 --- a/system/migrations/33.php +++ b/system/migrations/33.php @@ -0,0 +1,13 @@ +hasTable(TABLE_PREFIX . 'settings')) { + $db->exec("CREATE TABLE `" . TABLE_PREFIX . "settings` + ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `plugin_name` VARCHAR(255) NOT NULL DEFAULT '', + `key` VARCHAR(255) NOT NULL DEFAULT '', + `value` TEXT NOT NULL, + PRIMARY KEY (`id`), + KEY `key` (`key`) + ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;"); +}