osem-fcy/spec/factories/vdays.rb

22 lines
399 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: vdays
#
# id :bigint not null, primary key
# day :date
# description :text
# created_at :datetime
# updated_at :datetime
# conference_id :integer
#
FactoryBot.define do
factory :vday do
day { Time.zone.today }
description { 'Lorem Ipsum dolsum' }
conference
end
2014-05-19 12:49:04 +05:30
2014-06-30 17:07:53 +02:00
end