Commit 6f1f3fa8 authored by Steve Müller's avatar Steve Müller

fix drop database statement in DB2

parent fa9bb2d1
...@@ -412,7 +412,7 @@ class DB2Platform extends AbstractPlatform ...@@ -412,7 +412,7 @@ class DB2Platform extends AbstractPlatform
*/ */
public function getDropDatabaseSQL($database) public function getDropDatabaseSQL($database)
{ {
return "DROP DATABASE ".$database.";"; return "DROP DATABASE " . $database;
} }
/** /**
......
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