class CreateBaseTipoDePessoas < ActiveRecord::Migration[4.2]
  def change
    create_table :base_tipo_de_pessoas do |t|
      t.string :descricao

      t.timestamps null: false
    end
  end
end
