Files
redux-scraper/db/migrate/20250820230131_remove_e621_user_post_fav_rows.rb
2025-08-20 23:47:03 +00:00

15 lines
302 B
Ruby

class RemoveE621UserPostFavRows < ActiveRecord::Migration[7.2]
def up
execute <<-SQL
DELETE FROM domain_user_post_favs
WHERE user_id IN (
SELECT base_table_id FROM domain_users_e621_aux
)
SQL
end
def down
raise ActiveRecord::IrreversibleMigration
end
end