Navigation Menu

Skip to content

Commit

Permalink
Added unix_timestamp index to mantis_bugnote_table.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1100 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
jhuggins committed Jun 7, 2002
1 parent 5e98a3e commit 98f9c7f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions sql/db_generate.sql
@@ -1,11 +1,11 @@
#
# Table structure for table `mantis_bug_file_table`
# --------------------------------------------------------
# $Revision: 1.4 $
# $Revision: 1.5 $
# $Author: jhuggins $
# $Date: 2002-06-05 15:32:46 $
# $Date: 2002-06-07 14:17:26 $
#
# $Id: db_generate.sql,v 1.4 2002-06-05 15:32:46 jhuggins Exp $
# $Id: db_generate.sql,v 1.5 2002-06-07 14:17:26 jhuggins Exp $
# --------------------------------------------------------
#

Expand Down Expand Up @@ -122,7 +122,8 @@ CREATE TABLE mantis_bugnote_table (
view_state int(2) NOT NULL default '10',
date_submitted datetime NOT NULL default '1970-01-01 00:00:01',
last_modified datetime NOT NULL default '1970-01-01 00:00:01',
PRIMARY KEY (id)
PRIMARY KEY (id),
KEY last_modified (last_modified)
);
# --------------------------------------------------------

Expand Down

0 comments on commit 98f9c7f

Please sign in to comment.