aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/line_referential_membership.rb
blob: dcada25bf229a6b0fe9bbbfba1cbbcae28ab2851 (plain)
1
2
3
4
5
6
class LineReferentialMembership < ActiveRecord::Base
  belongs_to :organisation
  belongs_to :line_referential

  validates :organisation_id, presence: true, uniqueness: { scope: :line_referential }
end