tab/spec/factories/notifications.rb

18 lines
369 B
Ruby

# == 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
#
FactoryBot.define do
factory :notification do
end
end