From 0284798a8cc4987c84805634a7a84d5d853a2168 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 24 Jan 2012 15:13:22 +0800 Subject: Bug 240437: Add a "last seen date" column to the profiles table r=LpSolit, a=LpSolit --- 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 771d7e4f2..b9460cc31 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -647,6 +647,9 @@ sub update_table_definitions { # 2011-06-15 dkl@mozilla.com - Bug 658929 _migrate_disabledtext_boolean(); + # 2011-11-01 glob@mozilla.com - Bug 240437 + $dbh->bz_add_column('profiles', 'last_seen_date', {TYPE => 'DATETIME'}); + # 2011-10-11 miketosh - Bug 690173 _on_delete_set_null_for_audit_log_userid(); -- cgit v1.2.3-24-g4f1b