summaryrefslogtreecommitdiff
path: root/spec/factories/lfs_objects_projects.rb
blob: 50b45843c9910d613d31523db051fb1a2769b4df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# == Schema Information
#
# Table name: lfs_objects_projects
#
#  id            :integer          not null, primary key
#  lfs_object_id :integer          not null
#  project_id    :integer          not null
#  created_at    :datetime
#  updated_at    :datetime
#

FactoryGirl.define do
  factory :lfs_objects_project do
    lfs_object
    project
  end
end