Files
dry_beans/db/migrate/20240911233430_create_retiros.rb
2024-09-11 20:42:56 -03:00

9 lines
160 B
Ruby

class CreateRetiros < ActiveRecord::Migration[7.2]
def change
create_table :retiros do |t|
t.belongs_to :viaje
t.timestamps
end
end
end