DB/Autobroadcast: Update correct db struktur and auth base

This commit is contained in:
joschiwald
2013-06-02 19:28:53 +02:00
committed by Vincent-Michael
parent 15b055fe87
commit 3e108f0680
3 changed files with 19 additions and 2 deletions

View File

@@ -109,6 +109,20 @@ LOCK TABLES `account_banned` WRITE;
/*!40000 ALTER TABLE `account_banned` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `autobroadcast`
--
DROP TABLE IF EXISTS `autobroadcast`;
CREATE TABLE `autobroadcast` (
`realmid` int(11) NOT NULL DEFAULT '-1',
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`weight` tinyint(3) unsigned DEFAULT '1',
`text` longtext NOT NULL,
PRIMARY KEY (`id`,`realmid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `ip_banned`
--