前提
Symfony 5.4
# ローカルサーバスタート
symfony server:start
# db作成
php bin/console doctrine:database:create;
# Entityクラス作成
symfony console make:entity XxxxXxxxx
# マイグレーションファイル作成
symfony console make:migration
# マイグレーションファイルからdb定義変更
symfony console doctrine:migrations:migrate
# マイグレーションファイルのどこまでやっているかを見れる
php bin/console doctrine:migrations:status
# コントローラ作成
symfony console make:controller XxxXxxxController