summaryrefslogtreecommitdiff
path: root/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb
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.rb2
1 files changed, 2 insertions, 0 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
index ea0956fdf7f..dff682e8ce7 100644
--- a/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb
+++ b/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb
@@ -5,7 +5,9 @@ class AddTokenEncryptedToDeployTokens < ActiveRecord::Migration[5.1]
DOWNTIME = false
+ # rubocop:disable Migration/PreventStrings
def change
add_column :deploy_tokens, :token_encrypted, :string, limit: 255
end
+ # rubocop:enable Migration/PreventStrings
end