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

6 lines
145 B
SQL

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