24 lines
563 B
Ruby
Executable File
24 lines
563 B
Ruby
Executable File
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: inbox_members
|
|
#
|
|
# id :integer not null, primary key
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# inbox_id :integer not null
|
|
# user_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_inbox_members_on_inbox_id (inbox_id)
|
|
# index_inbox_members_on_inbox_id_and_user_id (inbox_id,user_id) UNIQUE
|
|
#
|
|
FactoryBot.define do
|
|
factory :inbox_member do
|
|
user { create(:user, :with_avatar) }
|
|
inbox
|
|
end
|
|
end
|