新規アプリの作成
composer self-update && composer create-project –prefer-dist cakephp/app アプリケーション名
Cakeサーバーの立ち上げ
bin/cake server
ファイルの一括生成(コントローラー・テンプレート・モデルファイル)
bin/cake bake all 小文字複数形の名称
all以外
- controller
- model
- template
- test
マイグレーション
bin/cake bake migration CreateArticles カラム名:型
bin/cake migrations migrate
IDを指定して実行する場合
bin/cake migrations migrate -t 20180912030211
一つ前に戻す
bin/cake migrations rollback
状態の確認
bin/cake migrations status
IDを指定して戻す
bin/cake migrations rollback -t 20180912031300