Sha256: 9105de1a38275703e987e323ea165e2f793532da807805d1e2ab64aa4ba2bddc
Contents?: true
Size: 1.21 KB
Versions: 15
Compression:
Stored size: 1.21 KB
Contents
# == Schema Information # # Table name: mtdevise_users # # id :integer not null, primary key # email :string(255) # password_digest :string(255) # created_at :datetime # updated_at :datetime # encrypted_password :string(255) default(""), not null # reset_password_token :string(255) # reset_password_sent_at :datetime # remember_created_at :datetime # sign_in_count :integer default(0), not null # current_sign_in_at :datetime # last_sign_in_at :datetime # current_sign_in_ip :string(255) # last_sign_in_ip :string(255) # confirmed_at :datetime # confirmation_token :string(255) # confirmation_sent_at :datetime # unconfirmed_email :string(255) # module Mtdevise class User < ::User include Gravtastic rolify role_join_table_name: 'mtdevise_users_mtdevise_roles', role_cname: 'Mtdevise::Role' acts_as_token_authenticatable gravtastic has_many :accounts, :class_name => "Mtdevise::Account", :foreign_key => "owner_id" devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable, :confirmable, :omniauthable end end
Version data entries
15 entries across 15 versions & 1 rubygems