Files
dry_beans/app/models/viaje.rb

6 lines
102 B
Ruby
Raw Normal View History

2024-09-11 20:39:53 -03:00
class Viaje < ApplicationRecord
2024-09-11 22:41:17 -03:00
belongs_to :ruta
has_many :entregas
has_many :retiros
2024-09-11 20:39:53 -03:00
end