Oops! Gotta have the sql too... [skip ci]

This commit is contained in:
Uleat 2019-09-09 19:53:34 -04:00
parent a73df6aa09
commit 8a26eaabf3

View File

@ -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;