Files
play-life/play-life-backend/migrations/000025_add_rejected_to_wishlist.down.sql
poignatov 91d4a7337c
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m20s
5.9.0: Статус Отклонено для желаний
2026-03-04 12:04:26 +03:00

4 lines
155 B
SQL

-- Remove rejected column from wishlist_items
DROP INDEX IF EXISTS idx_wishlist_items_rejected;
ALTER TABLE wishlist_items DROP COLUMN IF EXISTS rejected;