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

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

class AddGroupIdToServices < ActiveRecord::Migration[6.0]
  DOWNTIME = false

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