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

20170906133745_add_runners_token_to_groups.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a02160feb838857eab34f27bd088573e7ea7d842 (plain)
1
2
3
4
5
6
7
8
9
class AddRunnersTokenToGroups < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :namespaces, :runners_token, :string
  end
end