class CreateLicitacaoDocumentosDaAta < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_documentos_da_ata do |t|
      t.date 			:data_do_documento
      t.text 			:texto
      t.integer 	:usuario_id
      t.integer  	:modelo_do_documento_id
      t.integer 	:ata_de_registro_de_precos_id
      t.string		:numero

      t.timestamps
    end
  end
end
