Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Dec 11, 2015
1 parent 2241ee4 commit dc4db9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,9 @@ public function createDatabase($database = null)
*/
public function dropAutoincrement($table)
{
if ($table instanceof Table) {
$table = $table->getQuotedName($this->_platform);
}
$sql = $this->_platform->getDropAutoincrementSql($table);
foreach ($sql as $query) {
$this->_conn->executeUpdate($query);
Expand Down

0 comments on commit dc4db9e

Please sign in to comment.