自分が使用するときに確認する用。随時更新する。
ファイル作成
#必要なファイルを一括生成(モデル、コントローラー、テンプレートなど)
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 ...