mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
6 lines
220 B
SQL
6 lines
220 B
SQL
DROP TABLE IF EXISTS `saylink`;
|
|
CREATE TABLE `saylink` (
|
|
`id` int(10) NOT NULL auto_increment,
|
|
`phrase` varchar(64) NOT NULL default '',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; |