mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fix for #518056 in bug tracker... Me and my D@mned typos.... Amazing what a difference one little letter, and one extra space can make... :(
git-svn-id: file:///svn/phpbb/trunk@2162 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
17e976e5d9
commit
4cf27e41de
1 changed files with 2 additions and 2 deletions
|
@ -225,7 +225,7 @@ function get_table_def_postgresql($table, $crlf)
|
|||
$schema_create .= ' NOT NULL';
|
||||
}
|
||||
|
||||
$schema_create .= ", $crlf";
|
||||
$schema_create .= ",$crlf";
|
||||
|
||||
}
|
||||
//
|
||||
|
@ -278,7 +278,7 @@ function get_table_def_postgresql($table, $crlf)
|
|||
{
|
||||
while(list($idx_name, $props) = each($index_rows))
|
||||
{
|
||||
$props['column_names'] = ereg_replace(", $", "" , $props['column_name']);
|
||||
$props['column_names'] = ereg_replace(", $", "" , $props['column_names']);
|
||||
$index_create .= 'CREATE ' . $props['unique'] . " INDEX $idx_name ON $table (" . $props['column_names'] . ");$crlf";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue