2017-01-09 16:41:24 +01: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
|
|
|
|
#
|
|
|
|
|
2019-05-30 11:08:46 +02:00
|
|
|
FactoryBot.define do
|
2017-01-09 16:22:58 +01:00
|
|
|
factory :notification do
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|