tab/spec/factories/users.rb
2015-09-08 11:44:40 +02:00

19 lines
376 B
Ruby

# == Schema Information
#
# Table name: users
#
# id :integer not null, primary key
# name :string
# balance :integer default(0), not null
# penning :boolean default(FALSE), not null
# created_at :datetime not null
# updated_at :datetime not null
#
FactoryGirl.define do
factory :user do
end
end