* Add basic AddonMgr.

* All this really does at the moment is save addon names + CRCs to DB for use for.. whatever, later.

--HG--
branch : trunk
This commit is contained in:
XTZGZoReX
2010-01-20 16:24:52 +01:00
parent 593cbe4639
commit 48b085124e
9 changed files with 258 additions and 26 deletions

View File

@@ -59,6 +59,26 @@ LOCK TABLES `account_data` WRITE;
/*!40000 ALTER TABLE `account_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `addons`
--
DROP TABLE IF EXISTS `addons`;
CREATE TABLE `addons` (
`name` varchar(120) NOT NULL default '',
`crc` mediumint(32) unsigned NOT NULL default '0',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Addons';
--
-- Dumping data for table `addons`
--
LOCK TABLES `addons` WRITE;
/*!40000 ALTER TABLE `addons` DISABLE KEYS */;
/*!40000 ALTER TABLE `addons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `arena_team`
--