4 lines
155 B
MySQL
4 lines
155 B
MySQL
|
|
-- Remove rejected column from wishlist_items
|
||
|
|
DROP INDEX IF EXISTS idx_wishlist_items_rejected;
|
||
|
|
ALTER TABLE wishlist_items DROP COLUMN IF EXISTS rejected;
|