mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
Oops! Gotta have the sql too... [skip ci]
This commit is contained in:
parent
a73df6aa09
commit
8a26eaabf3
@ -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;
|
||||||
Loading…
x
Reference in New Issue
Block a user