summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/DB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Install/DB.pm')
-rw-r--r--Bugzilla/Install/DB.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 5b8cc3992..9a329d355 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -747,6 +747,11 @@ sub update_table_definitions {
_add_restrict_ipaddr();
+ $dbh->bz_add_column('profiles', 'password_change_required',
+ { TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE' });
+ $dbh->bz_add_column('profiles', 'password_change_reason',
+ { TYPE => 'varchar(64)' });
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################