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/20190711200508_add_token_encrypted_to_deploy_tokens.rb')
-rw-r--r--db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb b/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb
deleted file mode 100644
index dff682e8ce7..00000000000
--- a/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddTokenEncryptedToDeployTokens < ActiveRecord::Migration[5.1]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- add_column :deploy_tokens, :token_encrypted, :string, limit: 255
- end
- # rubocop:enable Migration/PreventStrings
-end