13 lines
275 B
Ruby
13 lines
275 B
Ruby
class RemoveFaUserPostFavRows < ActiveRecord::Migration[7.2]
|
|
def up
|
|
execute <<-SQL
|
|
DELETE FROM domain_user_post_favs
|
|
WHERE type = 'Domain::UserPostFav::FaUserPostFav_INVALID'
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|