8 lines
128 B
Ruby
8 lines
128 B
Ruby
|
class CreateRuta < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
create_table :ruta do |t|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|