blob: 3525fe55eb662b857608073bac5b9970b46bd67c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class Workbench < ActiveRecord::Base
belongs_to :organisation
belongs_to :line_referential
belongs_to :stop_area_referential
validates :name, presence: true
validates :organisation, presence: true
has_many :referentials
end
|