debian-mirror-gitlab/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
2019-02-15 15:39:39 +05:30

12 lines
256 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
end
end