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?

More than 3 years have passed since last update.

Laravelの基本的なArtisanコマンド

Posted at

#はじめに
よく使うLaravelのartisanコマンドをまとめたいと思います。
DB作成する際にはSQL直書きするとコードの量が多くなる(SQL入力しにくい。。。)ので特にテーブル作成はartisanコマンドつかった方が楽になります。

#Artisanコマンド
基本的なArtisanコマンドについてまとめていきます。

・Artisanコマンドの一覧を見る

$php artisan list

・Artisanコマンドの一覧を見る

$php artisan migrate:status

・テーブルの作成
 table_name:作成したいテーブル名

$php artisan make:migration create_(table_name)_table

・マイグレーションの実行

$php artisan migrate

・ロールバック(マイグレーション取り消し)
 --step=1:数字は直近のマイグレーションファイルから戻したいファイル数

$php artisan migrate:rollback --step=1

・全てのマイグレーションファイルのリフレッシュ(取り消し)とマイグレーション実行

$php artisan migrate:refresh

#さいごに
上記のコマンドを覚えておけば基本的には困らないと思います。
困ったり忘れたりしたときは$php artisan listすれば分かるのでこのコマンドは必ず覚えておきましょう。

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?