summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-01-24 08:13:22 +0100
committerByron Jones <bjones@mozilla.com>2012-01-24 08:13:22 +0100
commit0284798a8cc4987c84805634a7a84d5d853a2168 (patch)
treec81fd47c1fadd9abb335c618959ac227107efb8e /Bugzilla/DB
parent96624a115fe60b8ebdbbecbc2b38a7566d4e4c59 (diff)
downloadbugzilla-0284798a8cc4987c84805634a7a84d5d853a2168.tar.gz
bugzilla-0284798a8cc4987c84805634a7a84d5d853a2168.tar.xz
Bug 240437: Add a "last seen date" column to the profiles table
r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index eda4653e7..436258122 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -869,6 +869,7 @@ use constant ABSTRACT_SCHEMA => {
extern_id => {TYPE => 'varchar(64)'},
is_enabled => {TYPE => 'BOOLEAN', NOTNULL => 1,
DEFAULT => 'TRUE'},
+ last_seen_date => {TYPE => 'DATETIME'},
],
INDEXES => [
profiles_login_name_idx => {FIELDS => ['login_name'],