intra_app/app/models/p_truck.rb
Nicolas Bally 761e075bb6 initial
2018-11-08 21:47:30 +01:00

13 lines
231 B
Ruby

class PTruck < ActiveRecord::Base
has_many :p_truck_spaces
belongs_to :p_driver
accepts_nested_attributes_for :p_truck_spaces, allow_destroy: true
def name
self.marque.to_s + " " + self.immat.to_s
end
end