ActiveRecord::RecordNotUnique: RuntimeError: UNIQUE constraint failed: users.email 오류 해결
1266 단어 Rails6루비RailsActiveRecord
email 열의 필드가 고유하지 않다는 오류
rails t
때 타이틀 오류가 발생했습니다.ActiveRecord::RecordNotUnique: RuntimeError: UNIQUE constraint failed: users.email
아래 명령으로 데이터베이스의 값을 확인해 보는 것도 email은 쓰지 않았습니다.
$rails c
>>User.all
만약을 위해, email의 필드를 갱신해 하려고 하는 것도 또 에러.
$rails c
>>user=User.find(1)
>>[email protected]
>>user.save
ActiveRecord::StatementInvalid (SQLite3::BusyException: database is locked)
해결책
아래의 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
에서 테스트 성공했습니다! !
Reference
이 문제에 관하여(ActiveRecord::RecordNotUnique: RuntimeError: UNIQUE constraint failed: users.email 오류 해결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/amatsukix/items/1ff71d290a3d5f4d4436텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)