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

10 lines
186 B
Ruby

class CreateDistricts < ActiveRecord::Migration[5.0]
def change
create_table :districts do |t|
t.string :name
t.integer :state_id
t.timestamps
end
end
end