From 29bb2d6003c3beb957a2cee66715bc6e051e0643 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Wed, 14 Oct 2020 18:59:41 +0200 Subject: [PATCH] Add email and autoupdate field to database --- distillery/resources/templates/bookkeeping/create.sql | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/distillery/resources/templates/bookkeeping/create.sql b/distillery/resources/templates/bookkeeping/create.sql index 4f833db..0956a0e 100644 --- a/distillery/resources/templates/bookkeeping/create.sql +++ b/distillery/resources/templates/bookkeeping/create.sql @@ -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,