mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-06-01 04:38:27 -04:00
7 lines
155 B
Ruby
7 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CropCompanion < ApplicationRecord
|
|
belongs_to :crop_a, class_name: :Crop
|
|
belongs_to :crop_b, class_name: :Crop
|
|
end
|