aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-10-30 19:19:48 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-10-30 19:19:48 +0000
commit5553cfc2ed81ba9eb571804c431def962720b39e (patch)
treeec1c1e17e7f8e50a5d40387d4854b0b5affc49ff /phpBB/includes
parentc2832affae0e03d6f89e298d14025e68c6918770 (diff)
downloadforums-5553cfc2ed81ba9eb571804c431def962720b39e.tar
forums-5553cfc2ed81ba9eb571804c431def962720b39e.tar.gz
forums-5553cfc2ed81ba9eb571804c431def962720b39e.tar.bz2
forums-5553cfc2ed81ba9eb571804c431def962720b39e.tar.xz
forums-5553cfc2ed81ba9eb571804c431def962720b39e.zip
Several fixes:
Fix Bug #53335 Fix wrong unique index fetch for oracle and sqlite Fix alter column definition for firebird (although the query will fail in these circumstances [primary key] because firebird (again) does not support simple things... although... mssql/oracle having the same "problems", but there you are able to do more advanced queries) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10248 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/db/db_tools.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php
index bc9f36b23a..a762b31681 100644
--- a/phpBB/includes/db/db_tools.php
+++ b/phpBB/includes/db/db_tools.php
@@ -1873,7 +1873,7 @@ class phpbb_db_tools
}
else
{
- $statements[] = 'ALTER TABLE ' . $table_name . ' ALTER COLUMN "' . strtoupper($column_name) . '" TYPE ' . ' ' . $column_data['column_type_sql'];
+ $statements[] = 'ALTER TABLE ' . $table_name . ' ALTER COLUMN "' . strtoupper($column_name) . '" TYPE ' . ' ' . $column_data['column_type_sql_type'];
}
break;