2017-09-06 09:46:57 -04:00
|
|
|
class AddRunnersTokenToGroups < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2018-05-03 11:08:06 -04:00
|
|
|
def change
|
2017-09-06 09:46:57 -04:00
|
|
|
add_column :namespaces, :runners_token, :string
|
|
|
|
end
|
|
|
|
end
|