summaryrefslogtreecommitdiff
path: root/db/migrate/20230210155715_add_batch_id_to_bulk_import_export_uploads.rb
blob: 986d31a5839778dbd1636907f132fb2bb2fb9775 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddBatchIdToBulkImportExportUploads < Gitlab::Database::Migration[2.1]
  def change
    add_column :bulk_import_export_uploads, :batch_id, :bigint
  end
end