6 lines
102 B
Ruby
6 lines
102 B
Ruby
class Viaje < ApplicationRecord
|
|
belongs_to :ruta
|
|
has_many :entregas
|
|
has_many :retiros
|
|
end
|