summaryrefslogtreecommitdiff
path: root/db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb')
-rw-r--r--db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb b/db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb
deleted file mode 100644
index abb720dafb2..00000000000
--- a/db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddEncryptedRunnersTokenToSettings < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- add_column :application_settings, :runners_registration_token_encrypted, :string
- end
- # rubocop:enable Migration/PreventStrings
-end