11 lines
221 B
Ruby
11 lines
221 B
Ruby
class CreateViajes < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :viajes do |t|
|
|
t.string :direccion_partida
|
|
t.string :direccion_llegada
|
|
t.integer :kms
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|