summaryrefslogtreecommitdiff
path: root/db/migrate/20170906133745_add_runners_token_to_groups.rb
blob: 852f4cba670562d0d365ce7beed5a406d20f2a77 (plain)
1
2
3
4
5
6
7
8
9
class AddRunnersTokenToGroups < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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