summaryrefslogtreecommitdiff
path: root/db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb')
-rw-r--r--db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb b/db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb
index 22fdb030edc..9d1628bc42a 100644
--- a/db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb
+++ b/db/migrate/20200406192059_add_write_registry_to_deploy_tokens.rb
@@ -8,7 +8,7 @@ class AddWriteRegistryToDeployTokens < ActiveRecord::Migration[6.0]
disable_ddl_transaction!
def up
- add_column_with_default(:deploy_tokens, :write_registry, :boolean, default: false, allow_null: false)
+ add_column_with_default(:deploy_tokens, :write_registry, :boolean, default: false, allow_null: false) # rubocop:disable Migration/AddColumnWithDefault
end
def down