Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb')
-rw-r--r--db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb b/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
deleted file mode 100644
index 00c88140b52..00000000000
--- a/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddEncryptedRunnersTokenToNamespaces < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- add_column :namespaces, :runners_token_encrypted, :string
- end
- # rubocop:enable Migration/PreventStrings
-end