Skip to content

Commit

Permalink
removed MySQLism in creating upgrade table
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@3681 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
thraxisp committed Jul 16, 2005
1 parent 49f94e4 commit a9d48c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/upgrade.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: upgrade.php,v 1.10 2005-07-16 10:53:43 prichards Exp $
# $Id: upgrade.php,v 1.11 2005-07-16 13:12:32 thraxisp Exp $
# --------------------------------------------------------
?>
<?php
Expand Down Expand Up @@ -50,7 +50,7 @@

if ( ! db_table_exists( config_get( 'mantis_upgrade_table' ) ) ) {
# Create the upgrade table if it does not exist
$query = "CREATE TABLE IF NOT EXISTS " . config_get( 'mantis_upgrade_table' ) .
$query = "CREATE TABLE " . config_get( 'mantis_upgrade_table' ) .
"(upgrade_id char(20) NOT NULL,
description char(255) NOT NULL,
PRIMARY KEY (upgrade_id))";
Expand Down

0 comments on commit a9d48c0

Please sign in to comment.