- Updates library table definition

- Adds a ckey and datetime column to the library table so we can finally see who is uploading all the exploitive books.
This commit is contained in:
errorage
2013-04-21 19:35:42 +02:00
parent f086f343ac
commit 8a8a516773
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -162,18 +162,18 @@ CREATE TABLE `erro_legacy_population` (
--
-- Table structure for table `erro_library`
--
delimiter $$
DROP TABLE IF EXISTS `erro_library`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `erro_library` (
`id` int(11) NOT NULL DEFAULT '0',
`author` text NOT NULL,
`title` text NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`author` varchar(45) NOT NULL,
`title` varchar(45) NOT NULL,
`content` text NOT NULL,
`category` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
`category` varchar(45) NOT NULL,
`ckey` varchar(45) DEFAULT 'LEGACY',
`datetime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5370 DEFAULT CHARSET=latin1$$
--
-- Table structure for table `erro_player`