DataFixturesのloadでext_translationが無いよエラーの対処

Symfony2の備忘メモ。

$ app/console doctrine:fixtures:load

を実行した時に、

[PDOException]
SQLSTATE[42S02] : Base table or view not found: 11046 Table '[DB名].ext_translations' doesn't exit

みたいなエラーが出た場合、いったん以下で更新を掛けたら解決しました。

$ app/console doctrine:schema:update --force


ただし、強制更新なので手動で構成を変えた場合は元に戻るので注意。