},
{
name => 'bz_canusewhineatothers',
- description => 'Can configure whine reports for other users',
+ description => 'Can configure queries and schedules for periodic'
+ . ' reports to be run and sent via email to other users and groups',
},
{
name => 'bz_canusewhines',
- description => 'User can configure whine reports for self',
+ description => 'Can configure queries and schedules for periodic'
+ . ' reports to be run and sent via email to themselves',
# inherited_by means that users in the groups listed below are
# automatically members of bz_canusewhines.
inherited_by => ['editbugs', 'bz_canusewhineatothers'],
$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 #
################################################################