mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-01 11:36:36 +00:00
Moved queryserv sql to svn so I can more easily have a git section without confusion
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for player_speech
|
||||
-- ----------------------------
|
||||
CREATE TABLE `player_speech` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`from` varchar(64) NOT NULL,
|
||||
`to` varchar(64) NOT NULL,
|
||||
`message` varchar(256) NOT NULL,
|
||||
`minstatus` smallint(5) NOT NULL,
|
||||
`guilddbid` int(11) NOT NULL,
|
||||
`type` tinyint(3) NOT NULL,
|
||||
`timerecorded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user