- Adds the framework that allows soft-deleting books from the library.

This commit is contained in:
errorage
2013-11-04 23:46:46 +01:00
parent cc1e3d2b6d
commit b60526ca10
3 changed files with 19 additions and 3 deletions

View File

@@ -174,6 +174,7 @@ CREATE TABLE `erro_library` (
`category` varchar(45) NOT NULL,
`ckey` varchar(45) DEFAULT 'LEGACY',
`datetime` datetime DEFAULT NULL,
`deleted` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;