summaryrefslogtreecommitdiff
path: root/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb')
-rw-r--r--db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb b/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
index f6986fcdfeb..f42239475f7 100644
--- a/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
+++ b/db/migrate/20181116141504_add_encrypted_runners_token_to_projects.rb
@@ -6,10 +6,10 @@ class AddEncryptedRunnersTokenToProjects < ActiveRecord::Migration[4.2]
DOWNTIME = false
# rubocop:disable Migration/AddColumnsToWideTables
- # rubocop:disable Migration/AddLimitToStringColumns
+ # rubocop:disable Migration/PreventStrings
def change
add_column :projects, :runners_token_encrypted, :string
end
+ # rubocop:enable Migration/PreventStrings
# rubocop:enable Migration/AddColumnsToWideTables
- # rubocop:enable Migration/AddLimitToStringColumns
end