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 5 years have passed since last update.

自分用のアウトプット

0
Posted at

マイグレーションファイルで困った時の解決策を自分なりのアウトプットでまとめます

①マイグレーションファイルは
 createコマンドが先に来るように作成すること

 例えば
 create_brandは1番目に来るように作成
 もし、ブランドのマイグレーションファイルに対し、何か加えるようなファイルを作成する
 場合はcreate_brandのマイグレーションファイルより後になるようにマイグレーション
 ファイルを作る
 例
 1番目:(2020〜)_create_brand 
 2番目:(2020〜)_add_brand_to_create
 3番目:〜

②マイグレーションファイルは日付を変えることで順番を変えることができる

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?