summaryrefslogtreecommitdiff
path: root/data/tables.sql
diff options
context:
space:
mode:
Diffstat (limited to 'data/tables.sql')
-rw-r--r--data/tables.sql13
1 files changed, 12 insertions, 1 deletions
diff --git a/data/tables.sql b/data/tables.sql
index d3170c9a1..ed8b2b60c 100644
--- a/data/tables.sql
+++ b/data/tables.sql
@@ -111,7 +111,6 @@ CREATE TABLE anope_cs_info (
memomax smallint(5) unsigned NOT NULL default '0',
botnick varchar(255) NOT NULL default '',
botflags int(10) unsigned NOT NULL default '0',
- ttb smallint(6) NOT NULL default '0',
bwcount smallint(6) NOT NULL default '0',
capsmin smallint(6) NOT NULL default '0',
capspercent smallint(6) NOT NULL default '0',
@@ -138,6 +137,18 @@ CREATE TABLE anope_cs_levels (
) TYPE=MyISAM;
--
+-- Table structure for table `anope_cs_ttb`
+--
+DROP TABLE IF EXISTS anope_cs_ttb;
+CREATE TABLE anope_cs_ttb (
+ ct_id int(11) NOT NULL auto_increment,
+ channel varchar(255) NOT NULL default '',
+ ttb_id int(11) NOT NULL default '0',
+ value int(11) NOT NULL default '0',
+ PRIMARY KEY (ct_id)
+) TYPE=MyISAM;
+
+--
-- Table structure for table `anope_hs_core`
--