Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20191111115229_add_group_id_to_import_export_uploads.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74ef0f27b3ebba33e4fb5bdd9cec9a3ac92e7325 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddGroupIdToImportExportUploads < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :import_export_uploads, :group_id, :bigint
  end
end