class CreateContabilidadeAgrupamentosDeRetencoesDoControleDePg < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_agrupamentos_de_retencoes_do_controle_de_pg do |t|
      t.boolean :folha, :default => false
      t.integer :controle_de_pagamento_id
      t.integer :conta_extra_id
      t.string :imposto_type
      t.boolean :detalhamento_por_ug, :default => false
      t.boolean :detalhamento_por_fonte, :default => false
      t.string  :tipo_de_acao

      t.timestamps
    end
  end
end
