Player notes update

This commit is contained in:
Markolie
2015-09-15 05:10:03 +02:00
parent 14e35d52bf
commit 3ff3945bab
19 changed files with 541 additions and 329 deletions
+19 -2
View File
@@ -457,6 +457,23 @@ CREATE TABLE `erro_watch` (
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
-- Dump completed on 2013-03-24 18:02:35
-- Dump completed on 2015-05-28 19:57:44
--
-- Table structure for table `notes`
--
DROP TABLE IF EXISTS `erro_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `erro_notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ckey` varchar(32) NOT NULL,
`notetext` text NOT NULL,
`timestamp` datetime NOT NULL,
`adminckey` varchar(32) NOT NULL,
`last_editor` varchar(32),
`edits` text,
`server` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;