sqm-dashboards/db/migrate/20170228164212_create_schools.rb
2017-03-01 13:23:54 -05:00

10 lines
185 B
Ruby

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