Prepare db for toot digests

develop
mj-saunders 2018-05-21 14:08:33 +00:00
parent 5b48172342
commit 22962f88c5
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
ALTER TABLE `feeds`
ADD `digest_enabled` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 AFTER `enabled`,
ADD `digest_limit` tinyint UNSIGNED NOT NULL DEFAULT 5 AFTER `digest_enabled`,
ADD `digest_signature` varchar(100) AFTER `digest_limit`;