为什么要使用“ getDatabasePlatform”检查和简单的SQL语句创建自动生成的原则迁移,以创建架构而不使用Doctrine\DBAL\Schema\Schema
?
应该可能会生成
这样的迁移$myTable = $schema->createTable("my_table");
$myTable->addColumn("id", "integer", array("unsigned" => true));
$myTable->addColumn("username", "string", array("length" => 32));