summaryrefslogtreecommitdiffstats
path: root/schema
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-11-10 19:49:13 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2016-02-07 10:52:05 +0100
commitaa5e58db81b8a243e03d0f08925c2d1f34c82304 (patch)
tree22b086afdf5dc6173f5964342be0f09f3d266571 /schema
parent3412de21d32708b44d1fb3011649734e3cc67d9b (diff)
downloadaur-aa5e58db81b8a243e03d0f08925c2d1f34c82304.tar.gz
aur-aa5e58db81b8a243e03d0f08925c2d1f34c82304.tar.xz
Add global comment notification setting
Add a configuration option to the account edit page that allows for globally enabling/disabling package base comment notifications. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'schema')
-rw-r--r--schema/aur-schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/aur-schema.sql b/schema/aur-schema.sql
index 543f0256..13a052e1 100644
--- a/schema/aur-schema.sql
+++ b/schema/aur-schema.sql
@@ -38,6 +38,7 @@ CREATE TABLE Users (
LastLoginIPAddress INTEGER UNSIGNED NOT NULL DEFAULT 0,
InactivityTS BIGINT UNSIGNED NOT NULL DEFAULT 0,
RegistrationTS TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ CommentNotify TINYINT(1) NOT NULL DEFAULT 1,
PRIMARY KEY (ID),
UNIQUE (Username),
UNIQUE (Email),