debian-mirror-gitlab/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
2019-12-04 20:38:33 +05:30

11 lines
308 B
Ruby

# frozen_string_literal: true
class AddEncryptedRunnersTokenToNamespaces < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :namespaces, :runners_token_encrypted, :string # rubocop:disable Migration/AddLimitToStringColumns
end
end