LoginSignup
1
0

More than 1 year has passed since last update.

symfony5.4のコマンドまとめ

Posted at

前提

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
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0