summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2013-08-23 20:38:56 +0200
committerDave Lawrence <dlawrence@mozilla.com>2013-08-23 20:38:56 +0200
commite2c1157cf6bbb98deff0990efa2d8a829370fdf5 (patch)
treecca3e2afdbd33ebda36e5e5da147706780c50f4e /Bugzilla/Install
parent1f870a8b3f88cc77319dec50380fc4554f34793e (diff)
downloadbugzilla-e2c1157cf6bbb98deff0990efa2d8a829370fdf5.tar.gz
bugzilla-e2c1157cf6bbb98deff0990efa2d8a829370fdf5.tar.xz
Bug 903387 - Backport bug 240437 (last_seen_date column) to BMO 4.2
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index db3b8e3a3..ad68e94c4 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -660,6 +660,9 @@ sub update_table_definitions {
# 2011-10-11 miketosh - Bug 690173
_on_delete_set_null_for_audit_log_userid();
+ # 2011-11-01 glob@mozilla.com - Bug 240437
+ $dbh->bz_add_column('profiles', 'last_seen_date', {TYPE => 'DATETIME'});
+
# 2011-11-28 dkl@mozilla.com - Bug 685611
_fix_notnull_defaults();