tab/spec/factories/notifications.rb

19 lines
370 B
Ruby
Raw Normal View History

2017-01-09 15:41:24 +00:00
# == Schema Information
#
# Table name: notifications
#
# id :integer not null, primary key
# user_id :integer not null
# message :string
# read :boolean default(FALSE)
# created_at :datetime not null
# updated_at :datetime not null
#
2017-01-09 15:22:58 +00:00
FactoryGirl.define do
factory :notification do
end
end