Files
ppanel-web/migrations/mysql/02125_subscribe_stock.sql
T
Ember Moth 5de9508963 fix bugs
2026-07-05 22:35:53 +08:00

5 lines
144 B
SQL

-- Update the `subscribe` table to set `inventory` to -1 where it is currently 0
UPDATE `subscribe`
SET `inventory` = -1
WHERE `inventory` = 0;