Skip to content
Snippets Groups Projects
Commit 3be26431 authored by Robin Appelman's avatar Robin Appelman
Browse files

Add `generateChangeScript()` back

parent 397a763c
No related branches found
No related tags found
No related merge requests found
...@@ -95,6 +95,15 @@ class MDB2SchemaManager { ...@@ -95,6 +95,15 @@ class MDB2SchemaManager {
} }
} }
/**
* @param \Doctrine\DBAL\Schema\Schema $schema
* @return string
*/
public function generateChangeScript($schema) {
$migrator = $this->getMigrator();
return $migrator->generateChangeScript($schema);
}
/** /**
* remove all tables defined in a database structure xml file * remove all tables defined in a database structure xml file
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment