From ac6167f3a698dc8c142d0808fcd7aaa0f00e1f65 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Mon, 18 Nov 2013 22:24:39 +0800 Subject: Bug 937180: creation_ts of bugs and attachments always at 0 seconds r=dkl, a=simon --- Bugzilla/Attachment.pm | 29 +++++++++++++---------------- Bugzilla/Bug.pm | 2 +- 2 files changed, 14 insertions(+), 17 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index 92e05e606..ef4785633 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -59,22 +59,19 @@ use constant LIST_ORDER => ID_FIELD; use constant AUDIT_CREATES => 0; use constant AUDIT_UPDATES => 0; -sub DB_COLUMNS { - my $dbh = Bugzilla->dbh; - - return qw( - attach_id - bug_id - description - filename - isobsolete - ispatch - isprivate - mimetype - modification_time - submitter_id), - $dbh->sql_date_format('attachments.creation_ts', '%Y.%m.%d %H:%i') . ' AS creation_ts'; -} +use constant DB_COLUMNS => qw( + attach_id + bug_id + creation_ts + description + filename + isobsolete + ispatch + isprivate + mimetype + modification_time + submitter_id +); use constant REQUIRED_FIELD_MAP => { bug_id => 'bug', diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 88f1f18bc..1e82da30d 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -71,6 +71,7 @@ sub DB_COLUMNS { bug_status cclist_accessible component_id + creation_ts delta_ts estimated_time everconfirmed @@ -89,7 +90,6 @@ sub DB_COLUMNS { version ), 'reporter AS reporter_id', - $dbh->sql_date_format('creation_ts', '%Y.%m.%d %H:%i') . ' AS creation_ts', $dbh->sql_date_format('deadline', '%Y-%m-%d') . ' AS deadline', @custom_names); -- cgit v1.2.3-24-g4f1b