class CreateBaseMunicipiosSim < ActiveRecord::Migration[4.2]
  def change
    create_table :base_municipios_sim do |t|
      t.string :codigo
      t.string :nome

      t.timestamps null: false
    end
    load File.expand_path('seed_municipios_sim.rb', Rails.root.to_s + '/db')
  end
end
