summaryrefslogtreecommitdiff
path: root/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
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.rb4
1 files changed, 3 insertions, 1 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
index 0a8ed912891..00c88140b52 100644
--- a/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
+++ b/db/migrate/20181116141415_add_encrypted_runners_token_to_namespaces.rb
@@ -5,7 +5,9 @@ class AddEncryptedRunnersTokenToNamespaces < ActiveRecord::Migration[4.2]
DOWNTIME = false
+ # rubocop:disable Migration/PreventStrings
def change
- add_column :namespaces, :runners_token_encrypted, :string # rubocop:disable Migration/AddLimitToStringColumns
+ add_column :namespaces, :runners_token_encrypted, :string
end
+ # rubocop:enable Migration/PreventStrings
end