class CreateContabilidadeConselhosDeRpps < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_conselhos_de_rpps do |t|
      t.integer :decreto_id
      t.integer :tipo_de_conselho
      t.date :data_de_extincao
      t.integer :decreto_de_extincao_id
      t.date :data_de_criacao
      t.integer :arquivo_id
      t.integer :orcamento_id

      t.timestamps
    end
  end
end
