Add hash and delkey

This commit is contained in:
Eliot Whalan 2016-06-19 14:36:10 +10:00
parent fe4b307c1c
commit aefde6a154
No known key found for this signature in database
GPG Key ID: C0A42175139840D6
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,7 @@
CREATE TABLE `pastebin` ( CREATE TABLE `pastebin` (
`id` varchar(30) NOT NULL, `id` varchar(30) NOT NULL,
`hash` char(40) default NULL,
`data` longtext, `data` longtext,
`delkey` char(40) default NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
); );