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.

userのカラムがありませんを解決~

Posted at

自分用メモです!!

起きたこと

deviceで用意されたサインアップ機能を使用しサインアップを実行した際に
以下のエラー発生

image.png

行ったこと

schema.rbのカラムを見てまずusernameがあるか確認する。

なかったので、

 rails g  migration add_name_to_users

を実行。この際ファイル名はなんでも問題はないが、
・テーブル名
・カラム名
を含ませるとなおよし

次にカラムを追加する

カラムを複数追加する場合の書き方

add_column :テーブル名, :カラム名, :データ型

を追加したいカラム分行う

次に

rails db:migrate

を行うだけ

## 参考にした記事
https://freesworder.net/rails-column-add-remove/

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?