Moved queryserv sql to svn so I can more easily have a git section without confusion

This commit is contained in:
KimLS
2013-02-16 16:47:28 -08:00
parent 710554efcd
commit 0aa958de8f
4 changed files with 0 additions and 0 deletions
+14
View File
@@ -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;