Files
redux-scraper/db/migrate/20250820204436_remove_fa_user_post_fav_rows.rb
2025-08-20 22:10:57 +00:00

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