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 1 year has passed since last update.

Laravelで新規開発するとき用のメモ

Last updated at Posted at 2022-12-19

Laravelの標準機能

サードパーティ製パッケージ

その他

Database

新規テーブル作成時

テーブルを作成する際は以下のコマンドを使う

php artisan make:model User --all

テーブル(カラム)変更時

modify_テーブル名_table_日付 --table=テーブル名で統一する。
命名を統一させたいが同じクラス名を宣言できないため日付を入れる。

php artisan make:migration modify_users_table_20221201 --table=users
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?