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.

テーブルのカラムに変更を加えたいです 【 rails 】

Posted at

マイグレーションファイルとは

マイグレーションファイルとは、テーブルのカラムを追加したり消したり型を変更したりする役割があるファイル

また、何か、カラムに変更を加える場合、必ずマイグレーションファイルを記述する必要がある

初めに

あーーnameカラム邪魔だなーと、 おもたら削除しましょう😩

テーブルのカラム削除方法

image.png

①ターミナルに下記のコマンドを記述して実行する

rails generate migration テーブル名 カラム名:データ型

helloland@hellolandnoAir freemarket_sample_65a % rails generate migration users name                                    

②マイグレーション ファイルが作られるのでそれに変更の内容を記述して

今回は削除したいので、remove_colum です

image.png

③ターミナルでrails db:migrate を実行する

rails db:migraet

④カラムが完全に消滅しました

image.png

追記

もしエラーが出た場合、あせらずに エラー文を翻訳して解くいていきましょう

また、エラー内容は一行にまとめられているので、そこだけを見ることをお勧めします

image.png

大体マイグレーションファイルの記述ミスの場合が大半の為、エラー内容にしたがって作成したマイグレーション ファイルを修正することをお勧めします

image.png

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?