0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CakePHPでよく使うBakeコマンド

Last updated at Posted at 2025-03-21

自分が使用するときに確認する用。随時更新する。

ファイル作成

#必要なファイルを一括生成(モデル、コントローラー、テンプレートなど)
bin/cake bake all ${name}
#モデルファイル作成
bin/cake bake model ${name}
#コントローラーファイル作成
bin/cake bake controller ${name}
#テンプレートファイル作成
bin/cake bake template ${name}
# Mailerクラスの生成
bin/cake bake mailer ${name}

マイグレーション

#すべてのマイグレーションを実行
bin/cake migrations migrate
#マイグレーションの状態確認
bin/cake migrations status
#すべてのマイグレーションをロールバックする
※すでに実行済みのマイグレーションファイルを編集した場合に実行する。
bin/cake migrations rollback -t 0

# フィールド追加
bin/cake bake migration AddFieldToUsers field:string field2:boolean
※ bin/cake bake migration Add${FieldName}To${TableName} ${fieldName}:type ...
# フィールド変更
bin/cake bake migration AlterFieldOnUsers field:string:integer 
※ bin/cake bake migration Alter${FieldName}On${TableName} ${fieldName}:beforeType:afterType ...

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?