6
2

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.

ActiveRecord::RecordNotUnique: RuntimeError: UNIQUE constraint failed: users.email のエラーを解決

Last updated at Posted at 2019-09-04

:worried:emailカラムのフィールドが一意でないよっていうエラー

rails t した際にタイトルのエラーが出ました。

ActiveRecord::RecordNotUnique: RuntimeError: UNIQUE constraint failed: users.email

下記コマンドでデータベースの値を確認してみるもemailは被っていませんでした。

$rails c
>>User.all

念の為、emailのフィールドを更新してみようとするもまたエラー。

$rails c

>>user=User.find(1)
>>user.email=aaaaaa@sample.email
>>user.save
ActiveRecord::StatementInvalid (SQLite3::BusyException: database is locked)

:joy:解決策

下記の stack overflow にそれっぽい質問がありました。
test/fixtures/users.ymlを確認しろってありますね。
Rails Tutorial: SQLite3::ConstraintException: UNIQUE constraint failed: users.email


one: {}
# column: value
#
two: {}
# column: value

私の場合は、deviseというgemを利用しているうちに、users.ymlが更新されてしまっていたようです。

これを削除してrails tでテスト成功しました!!

6
2
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
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?