From fcc39a818dc14469d99314c7345f319d3921e861 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 2 Oct 2015 14:48:08 +0000 Subject: Bug 1196620: support automatic removal of inactive users from groups (schema only) --- Bugzilla/Install/DB.pm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Bugzilla/Install') diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 2d454b81a..794b7e6e7 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -756,6 +756,9 @@ sub update_table_definitions { _migrate_group_owners(); + $dbh->bz_add_column('groups', 'idle_member_removal', + {TYPE => 'INT2', NOTNULL => 1, DEFAULT => '0'}); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ -- cgit v1.2.3-24-g4f1b