school_app/db/migrate/20250908153925_create_schoo...

11 lines
178 B
Ruby

class CreateSchools < ActiveRecord::Migration[8.0]
def change
create_table :schools do |t|
t.string :name
t.string :place
t.timestamps
end
end
end