1
0
mirror of synced 2025-02-20 22:23:14 +03:00

[2.0] Strange formatting fix.

This commit is contained in:
romanb 2009-05-30 09:39:42 +00:00
parent 2b8091e80c
commit c3f5cba785

View File

@ -112,7 +112,7 @@ class OraclePlatform extends AbstractPlatform
*/
public function getCreateSequenceSql($sequenceName, $start = 1, $allocationSize = 1)
{
 return 'CREATE SEQUENCE ' . $this->quoteIdentifier($sequenceName)
return 'CREATE SEQUENCE ' . $this->quoteIdentifier($sequenceName)
. ' START WITH ' . $start . ' INCREMENT BY ' . $allocationSize;
}