Fix Rails/ReversibleMigration cop for remove (#30833)

This commit is contained in:
Matt Jankowski 2024-06-26 09:51:44 -04:00 committed by GitHub
parent 528a7f57fa
commit 51f581e03e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ class ChangeLanguageFilterToOptOut < ActiveRecord::Migration[5.0]
remove_index :users, :allowed_languages
change_table(:users, bulk: true) do |t|
t.remove :allowed_languages
t.remove :allowed_languages, type: :string, array: true, default: [], null: false
t.column :filtered_languages, :string, array: true, default: [], null: false
end