Pruebas
This commit is contained in:
@ -1,2 +1,3 @@
|
||||
class Entrega < ApplicationRecord
|
||||
belongs_to :viaje
|
||||
end
|
||||
|
@ -1,2 +1,3 @@
|
||||
class Retiro < ApplicationRecord
|
||||
belongs_to :viaje
|
||||
end
|
||||
|
@ -1,4 +1,6 @@
|
||||
class Ruta < ApplicationRecord
|
||||
has_many :viajes
|
||||
|
||||
def direccion_inicio
|
||||
@viajes.first.direccion_partida
|
||||
end
|
||||
|
@ -1,2 +1,5 @@
|
||||
class Viaje < ApplicationRecord
|
||||
belongs_to :ruta
|
||||
has_many :entregas
|
||||
has_many :retiros
|
||||
end
|
||||
|
Reference in New Issue
Block a user