mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
* All this really does at the moment is save addon names + CRCs to DB for use for.. whatever, later. --HG-- branch : trunk
7 lines
248 B
SQL
7 lines
248 B
SQL
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';
|