summaryrefslogtreecommitdiffstats
path: root/upgrading
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-11-10 20:18:13 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2016-02-07 10:54:20 +0100
commit64072461dfcc74857087b23c9ba7d9812b6afe40 (patch)
tree753980782ed91c694fe583495627a5dc8b8b7f4b /upgrading
parentaa5e58db81b8a243e03d0f08925c2d1f34c82304 (diff)
downloadaur-64072461dfcc74857087b23c9ba7d9812b6afe40.tar.gz
aur-64072461dfcc74857087b23c9ba7d9812b6afe40.tar.xz
Add support for package update notifications
Introduce a new notification option to receive notifications when a new commit is pushed to a package repository. Implements FS#30109. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'upgrading')
-rw-r--r--upgrading/4.2.0.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/upgrading/4.2.0.txt b/upgrading/4.2.0.txt
index ce76f493..0bf9a319 100644
--- a/upgrading/4.2.0.txt
+++ b/upgrading/4.2.0.txt
@@ -52,5 +52,6 @@ ALTER TABLE CommentNotify RENAME TO PackageNotifications;
----
ALTER TABLE Users
- ADD COLUMN CommentNotify TINYINT(1) NOT NULL DEFAULT 1;
+ ADD COLUMN CommentNotify TINYINT(1) NOT NULL DEFAULT 1,
+ ADD COLUMN UpdateNotify TINYINT(1) NOT NULL DEFAULT 0;
----