class CreateBaseEstados < ActiveRecord::Migration[4.2]
	def change
		create_table :base_estados do |t|
			t.string :uf, limit: 2
			t.string :nome

			t.timestamps null: false
		end
	end
end
