From 8a26eaabf3d93c7eaba7502796ca785d2cae727a Mon Sep 17 00:00:00 2001 From: Uleat Date: Mon, 9 Sep 2019 19:53:34 -0400 Subject: [PATCH] Oops! Gotta have the sql too... [skip ci] --- .../required/2019_09_09_bots_owner_options_rework.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 utils/sql/git/bots/required/2019_09_09_bots_owner_options_rework.sql diff --git a/utils/sql/git/bots/required/2019_09_09_bots_owner_options_rework.sql b/utils/sql/git/bots/required/2019_09_09_bots_owner_options_rework.sql new file mode 100644 index 000000000..6240e9366 --- /dev/null +++ b/utils/sql/git/bots/required/2019_09_09_bots_owner_options_rework.sql @@ -0,0 +1,10 @@ +DROP TABLE IF EXISTS `bot_owner_options`; + +CREATE TABLE `bot_owner_options` ( + `owner_id` INT(11) UNSIGNED NOT NULL, + `option_type` SMALLINT(3) UNSIGNED NOT NULL, + `option_value` SMALLINT(3) UNSIGNED NULL DEFAULT '0', + PRIMARY KEY (`owner_id`, `option_type`) +) +COLLATE='latin1_swedish_ci' +ENGINE=InnoDB;