doctrine 2の移行でテーブルを変更する際に問題が発生します。次のコードは常にエラーをスローします:操作'Doctrine \ DBAL \ Platforms \ AbstractPlatform::getAlterTableSQL'はプラットフォームでサポートされていません。
alter tableはsqliteでサポートされているため、これは奇妙なことです。
public function up(Schema $schema)
{
$user = $schema->getTable('user');
$user->addColumn('resellerId', 'integer', array(
'length' => '10',
'notnull' => true,
'unsigned' => true,
));
}