class CreateContabilidadeMembroDoConselhoDoRpps < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_membro_do_conselho_do_rpps do |t|
      t.integer :pessoa_id
      t.integer :representatividade_do_conselho
      t.integer :conselho_de_rpps_id
      t.integer :arquivo_id
      t.date :data_de_admissao
      t.date :data_de_saida

      t.timestamps
    end
  end
end
