Fix #263 gallery system using imgur

setup tutorial: https://github.com/Znote/ZnoteAAC/wiki/IMGUR-powered-Gallery-page
This commit is contained in:
Znote
2020-12-13 22:20:54 +00:00
parent 8128804021
commit 48d1dd5712
5 changed files with 66 additions and 22 deletions

View File

@@ -40,7 +40,8 @@ CREATE TABLE IF NOT EXISTS `znote_images` (
`desc` text NOT NULL,
`date` int NOT NULL,
`status` int NOT NULL,
`image` varchar(30) NOT NULL,
`image` varchar(50) NOT NULL,
`delhash` varchar(30) NOT NULL,
`account_id` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;