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