SQL based memos

This commit is contained in:
Markolie
2015-09-23 05:08:28 +02:00
parent 9d49985e1c
commit 2b7fda8a47
5 changed files with 162 additions and 51 deletions
+17
View File
@@ -478,3 +478,20 @@ CREATE TABLE `erro_notes` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `memo`
--
DROP TABLE IF EXISTS `erro_memo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `erro_memo` (
`ckey` varchar(32) NOT NULL,
`memotext` text NOT NULL,
`timestamp` datetime NOT NULL,
`last_editor` varchar(32),
`edits` text,
PRIMARY KEY (`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;