Add email and autoupdate field to database

This commit is contained in:
Tom Wiesing 2020-10-14 18:59:41 +02:00
parent 360a0771d9
commit 29bb2d6003
No known key found for this signature in database
GPG key ID: DC1F29F2BC78AB15

View file

@ -13,6 +13,12 @@ CREATE TABLE IF NOT EXISTS `${TABLE}`(
-- slug of the website
slug TEXT NOT NULL UNIQUE,
-- email address of owner, NULL if abndoned
owner_email VARCHAR(320),
-- automatically call blind_update.sh for this repo
auto_blind_update_enabled BIT NOT NULL DEFAULT 1,
-- local file path
filesystem_base TEXT NOT NULL,