class CreateLicitacaoDocumentosDoProcesso < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_documentos_do_processo do |t|
      t.date :data_do_documento
      t.text :texto
      t.integer :usuario_id
      t.string   :documento_file_name
      t.string   :documento_content_type
      t.integer  :documento_file_size
      t.datetime :documento_updated_at
      t.integer :projeto_id
      t.integer :tipo_de_documento_do_processo_id

      t.timestamps null: false
    end
  end
end
