Commit 597fdfad authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge pull request #468 from deeky666/fix-oracle-schema-manager-drop-table

Fix dropping table without autoincrement trigger in Oracle
parents 51f555bb ced17e7e
......@@ -317,7 +317,7 @@ class OracleSchemaManager extends AbstractSchemaManager
*/
public function dropTable($name)
{
$this->dropAutoincrement($name);
$this->tryMethod('dropAutoincrement', $name);
parent::dropTable($name);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment