9 lines
197 B
Ruby
9 lines
197 B
Ruby
class AddRunnersTokenToGroups < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :namespaces, :runners_token, :string
|
|
end
|
|
end
|