blob: 8371bdc320083dd61224904e14cb5bfa82dc7034 (
plain)
1
2
3
4
5
6
|
class LineReferentialMembership < ApplicationModel
belongs_to :organisation
belongs_to :line_referential
validates :organisation_id, presence: true, uniqueness: { scope: :line_referential }
end
|