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

More than 1 year has passed since last update.

CakePHPのコマンド

Posted at

一部composerもあり。コマンド忘れがちなのでメモ。

アプリケーションを実行

bin/cake server

マイグレーションファイルを作成する

bin/cake bake migration <table_name>

マイグレーションを実行

bin/cake migrations migrate

seedファイルを作成する

bin/cake bake seed <talbe_name>

seedファイルの中身をDBに入れる

bin/cake migrations seed

モデルファイルを作成

bin/cake bake model <model_name>

マイグレーションの履歴を一つ戻す

bin/cake migrations rollback

コントローラーを作成

bin/cake bake controller <controller_name> --prefix <directory_name>

ビューを作成

bin/cake bake template <view_name> --prefix <directory_name>

プラグイン取得

php composer.phar require cakephp/authentication:^2.0

下記ブログを参考にしました。Cakeを忘れてくるとここをチェックしています。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?