标签: doctrine-orm doctrine
想知道当使用以下方式时,该学说是否会忽略迁移过程中掉落的属性:
$tool = new \Doctrine\ORM\Tools\SchemaTool($entityManager); $tool->updateSchema($classes, true);
发现使用了SchemaDiff-> toSaveSQL,但这似乎仅影响可以删除的表。在类中不存在时从表中删除列是否正确?保存标志只会阻止表被删除吗?