class CreateBaseResponsaveis < ActiveRecord::Migration[5.2]
  def change
    create_table :base_responsaveis do |t|
      t.string :nome
      t.string :cpf
      t.string :rg
      t.integer :pessoa_id

      t.timestamps
    end
  end
end
