Sha256: 75ebe2d18edb1a27df6af9a8965a9c06ce518fdad65b79ee50aecf319375eb21
Contents?: true
Size: 1.78 KB
Versions: 6
Compression:
Stored size: 1.78 KB
Contents
# frozen_string_literal: true # == Schema Information # # Table name: users # # id :bigint not null, primary key # confirmation_sent_at :datetime # confirmation_token :string # confirmed_at :datetime # current_sign_in_at :datetime # current_sign_in_ip :string # discarded_at :datetime # email :string default(""), not null # encrypted_password :string default(""), not null # failed_attempts :integer default(0), not null # last_sign_in_at :datetime # last_sign_in_ip :string # locked_at :datetime # profiles :integer default([]), not null, is an Array # remember_created_at :datetime # reset_password_sent_at :datetime # reset_password_token :string # sign_in_count :integer default(0), not null # unconfirmed_email :string # unlock_token :string # created_at :datetime not null # updated_at :datetime not null # # Indexes # # index_users_on_confirmation_token (confirmation_token) UNIQUE # index_users_on_email (email) UNIQUE # index_users_on_reset_password_token (reset_password_token) UNIQUE # index_users_on_unlock_token (unlock_token) UNIQUE # FactoryBot.define do factory :orphan_user, class: 'User' do email { Faker::Internet.email } password { "password#{rand(99_999)}" } confirmed_at { Faker::Date.backward } trait :admin do developer { true } end trait :developer do developer { true } end factory :user do after(:create) do |user, _context| account = create :account create :user_account, user:, account: end end end end
Version data entries
6 entries across 6 versions & 1 rubygems