summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorMatt Selsky <selsky@columbia.edu>2014-11-24 18:02:23 +0100
committerGervase Markham <gerv@gerv.net>2014-11-24 18:02:23 +0100
commit82674d427a9b6f210347279dbb74da631f3d57cb (patch)
treef80625d927d0f2971e1b3bb33b707554614a27c5 /Bugzilla/Install
parent0eb69045b7a52fb4f8616be3ce16a98a83d35831 (diff)
downloadbugzilla-82674d427a9b6f210347279dbb74da631f3d57cb.tar.gz
bugzilla-82674d427a9b6f210347279dbb74da631f3d57cb.tar.xz
Are you sure you want to check in on branch master
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index ab02fe41d..540845fb2 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -730,6 +730,17 @@ sub update_table_definitions {
$dbh->bz_add_column('longdescs', 'is_markdown',
{TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'});
+ $dbh->do('UPDATE groups SET description = ? WHERE name = ? and description = ?',
+ undef,
+ "Can configure queries and schedules for periodic reports to be run and sent via email to other users and groups",
+ "bz_canusewhineatothers",
+ "Can configure whine reports for other users");
+ $dbh->do('UPDATE groups SET description = ? WHERE name = ? and description = ?',
+ undef,
+ "Can configure queries and schedules for periodic reports to be run and sent via email to themselves",
+ "bz_canusewhines",
+ "User can configure whine reports for self");
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################