9 lines
153 B
Ruby
9 lines
153 B
Ruby
class CreateRuta < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :ruta do |t|
|
|
t.has_many :viajes
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|