mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-16 15:08:54 +00:00
[ticket/17528] Review code fix
PHPBB-17528
This commit is contained in:
parent
b9dbce21f7
commit
40cd938e51
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class postgresql_platform extends PostgreSQLPlatform
|
|||
{
|
||||
$sequence = new Sequence($this->getIdentitySequenceName($table_name, $column_name));
|
||||
$sequence_sql[] = $this->getCreateSequenceSQL($sequence);
|
||||
$post_sql[] = 'ALTER SEQUENCE '.$sequence->getName().' OWNED BY ' . $table_name . '.' . $column_name;
|
||||
$post_sql[] = 'ALTER SEQUENCE ' . $sequence->getName() . ' OWNED BY ' . $table_name . '.' . $column_name;
|
||||
}
|
||||
}
|
||||
$sql = array_merge($sequence_sql, $sql, $post_sql);
|
||||
|
|
Loading…
Add table
Reference in a new issue