Sha256: f60781ff148fccdcde7622ad9ae8cd1ebeb867a6409d18c551ed5c86bedbb904
Contents?: true
Size: 1.25 KB
Versions: 15
Compression:
Stored size: 1.25 KB
Contents
# == Schema Information # # Table name: users # # id :integer 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 default(0), not null # failed_login_count :integer 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 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) # require File.dirname(__FILE__) + '/../test_helper' # Used to test muck_friend_user class UserTest < ActiveSupport::TestCase context "user instance with acts_as_muck_friend_user" do end end
Version data entries
15 entries across 15 versions & 1 rubygems