Sha256: b21c0397bed4ac6d2933a290bbdff7d9e2bdf155e6830493807e8bc952f56c6e
Contents?: true
Size: 1.9 KB
Versions: 9
Compression:
Stored size: 1.9 KB
Contents
# frozen_string_literal: true class DeviseJwtAuthCreate<%= user_class.pluralize.gsub("::","") %> < ActiveRecord::Migration<%= "[#{Rails::VERSION::STRING[0..2]}]" if Rails::VERSION::MAJOR > 4 %> def change <% table_name = @user_class.pluralize.gsub("::","").underscore -%> create_table(:<%= table_name %><%= primary_key_type %>) do |t| ## Required t.string :provider, null: false, default: 'email' t.string :uid, null: false, default: '' ## User Info t.string :name t.string :nickname t.string :image t.string :email ## Database authenticatable t.string :encrypted_password, null: false, default: '' ## Recoverable t.string :reset_password_token t.datetime :reset_password_sent_at t.boolean :allow_password_change, default: false ## Rememberable t.datetime :remember_created_at ## Trackable # t.integer :sign_in_count, default: 0, null: false # t.datetime :current_sign_in_at # t.datetime :last_sign_in_at # t.<%= ip_column %> :current_sign_in_ip # t.<%= ip_column %> :last_sign_in_ip ## Confirmable t.string :confirmation_token t.datetime :confirmed_at t.datetime :confirmation_sent_at t.string :unconfirmed_email # Only if using reconfirmable ## Lockable # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts # t.string :unlock_token # Only if unlock strategy is :email or :both # t.datetime :locked_at t.timestamps end add_index :<%= table_name %>, :email, unique: true add_index :<%= table_name %>, [:uid, :provider], unique: true add_index :<%= table_name %>, :reset_password_token, unique: true add_index :<%= table_name %>, :confirmation_token, unique: true # add_index :<%= table_name %>, :unlock_token, unique: true end end
Version data entries
9 entries across 9 versions & 3 rubygems