Sha256: e8384d599952b17ff6f5df96424b3b0d84c6ffc75a2f6639ab1ec90094b49a6e
Contents?: true
Size: 1.4 KB
Versions: 6
Compression:
Stored size: 1.4 KB
Contents
# == Schema Information # # Table name: users # # id :integer(4) not null, primary key # login :string(255) # email :string(255) # first_name :string(255) # last_name :string(255) # crypted_password :string(255) # password_salt :string(255) # persistence_token :string(255) not null # single_access_token :string(255) not null # perishable_token :string(255) not null # login_count :integer(4) default(0), not null # failed_login_count :integer(4) default(0), not null # last_request_at :datetime # current_login_at :datetime # last_login_at :datetime # current_login_ip :string(255) # last_login_ip :string(255) # terms_of_service :boolean(1) not null # time_zone :string(255) default("UTC") # disabled_at :datetime # created_at :datetime # activated_at :datetime # updated_at :datetime # identity_url :string(255) # url_key :string(255) # beta_code_id :integer(4) # class User < ActiveRecord::Base acts_as_authentic do |c| c.crypto_provider = Authlogic::CryptoProviders::BCrypt end acts_as_muck_user validates_terms_of_service # these are just for testing def creator_id self.id end def user_id self.id end def shared_by_id self.id end end
Version data entries
6 entries across 6 versions & 1 rubygems