mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
6 lines
259 B
SQL
6 lines
259 B
SQL
DROP TABLE IF EXISTS `areatrigger_city`;
|
|
CREATE TABLE `areatrigger_city` (
|
|
`id` int(11) unsigned NOT NULL default '0' COMMENT 'Identifier',
|
|
`name` text,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
|