Changeset 4321
- Timestamp:
- 04/30/08 21:00:32 (14 months ago)
- Files:
-
- 1 modified
-
branches/0.11/lib/Doctrine/Export/Pgsql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Export/Pgsql.php
r4252 r4321 298 298 { 299 299 $sequenceName = $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($sequenceName), true); 300 return $this->conn->exec('CREATE SEQUENCE ' . $sequenceName . ' INCREMENT 1' .301 ($start < 1 ? ' MINVALUE ' . $start : '') . ' START ' . $start );300 return 'CREATE SEQUENCE ' . $sequenceName . ' INCREMENT 1' . 301 ($start < 1 ? ' MINVALUE ' . $start : '') . ' START ' . $start; 302 302 } 303 303