summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb')
-rw-r--r--db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb b/db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb
index e94dc75e65c..62bb3f46cae 100644
--- a/db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb
+++ b/db/post_migrate/20200120083607_remove_storage_version_column_from_snippets.rb
@@ -19,7 +19,7 @@ class RemoveStorageVersionColumnFromSnippets < ActiveRecord::Migration[5.2]
def down
return if column_exists?(:snippets, :storage_version)
- add_column_with_default(
+ add_column_with_default( # rubocop:disable Migration/AddColumnWithDefault
:snippets,
:storage_version,
:integer,