18
10

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] devise_token_auth 導入エラー対処

Last updated at Posted at 2019-09-01

環境

  • Rails 5.2.3
  • Ruby 2.6.3
  • devise_token_auth 1.1.1

概要

  • 公式のgemからインストール。
  • gem 'devise_token_auth'bundle installにて。
  • 別途deviseは入れていない。

最新の(書いている時点で)gemをデフォルトの状態で動かすため、下記、公式説明の通りに、コンティグレーションを実行した。

その際に、なぜかエラーがでてしまった部分の解決を記載する。

User modelの修正

下記エラーが出る。

NoMethodError: undefined method `devise' for User

下記のように、extend Devise::Modelsを追加する。

参考) https://github.com/lynndylanhurley/devise_token_auth/issues/1276#issuecomment-478866479

app/models/user.rb
class User < ActiveRecord::Base
  extend Devise::Models
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable
  include DeviseTokenAuth::Concerns::User
end

migrationファイルの修正

下記エラーが出る。

NoMethodError (undefined method `current_sign_in_at'

migrationファイルのUserに、下記のように、trackableの追加の必要がある。

※または、上記User modelの:trackable削除。

2019mmddhhmmss_devise_token_auth_create_users.rb
  ## Tokens
  t.text :tokens

  ## Trackable
  t.integer  :sign_in_count, default: 0, null: false
  t.datetime :current_sign_in_at
  t.datetime :last_sign_in_at
  t.string  :current_sign_in_ip
  t.string  :last_sign_in_ip

  t.timestamps
end
18
10
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
18
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?