class CreateContabilidadeComitesDeInvestimento < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_comites_de_investimento do |t|
      t.date :data_da_criacao
      t.integer :decreto_id
      t.date :data_de_extincao
      t.integer :numero_do_instumento_legal
      t.date :data_da_publicacao_do_instumento_legal
      t.integer :orcamento_id
      t.integer :arquivo_id

      t.timestamps
    end
  end
end
