class CreateViajes < ActiveRecord::Migration[7.2]
def change
create_table :viajes do |t|
t.belongs_to :ruta
t.has_many :entregas
t.has_many :retiros
t.timestamps
end