From c3f5cba7859113070fdb635ab9493f6f526ed06b Mon Sep 17 00:00:00 2001 From: romanb Date: Sat, 30 May 2009 09:39:42 +0000 Subject: [PATCH] [2.0] Strange formatting fix. --- lib/Doctrine/DBAL/Platforms/OraclePlatform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/DBAL/Platforms/OraclePlatform.php b/lib/Doctrine/DBAL/Platforms/OraclePlatform.php index 1233e40ed..1d636ec81 100644 --- a/lib/Doctrine/DBAL/Platforms/OraclePlatform.php +++ b/lib/Doctrine/DBAL/Platforms/OraclePlatform.php @@ -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; }