You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
405 B
SQL
11 lines
405 B
SQL
--
|
|
-- Table structure for table `bot_accounts`
|
|
-- Creator id = 0 -> Created by Brokk via Auto-Generate from Configs
|
|
--
|
|
CREATE TABLE IF NOT EXISTS `bot_accounts` (
|
|
`account_id` int(11) unsigned NOT NULL,
|
|
`is_bot` tinyint(2) NOT NULL default '1',
|
|
`creator_id` int(11) unsigned NOT NULL default '0',
|
|
`creator_name` varchar(23) NOT NULL default 'Brokk',
|
|
PRIMARY KEY (`account_id`)
|
|
) ENGINE=MyISAM; |