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.rb4
1 files changed, 3 insertions, 1 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
index 124eedf7933..abb720dafb2 100644
--- a/db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb
+++ b/db/migrate/20181115140140_add_encrypted_runners_token_to_settings.rb
@@ -5,7 +5,9 @@ class AddEncryptedRunnersTokenToSettings < ActiveRecord::Migration[4.2]
DOWNTIME = false
+ # rubocop:disable Migration/PreventStrings
def change
- add_column :application_settings, :runners_registration_token_encrypted, :string # rubocop:disable Migration/AddLimitToStringColumns
+ add_column :application_settings, :runners_registration_token_encrypted, :string
end
+ # rubocop:enable Migration/PreventStrings
end