Files
ppanel-web/migrations/postgres/02125_subscribe_stock.sql
T
Ember Moth d2253bb8fa fix bugs
2026-07-05 22:22:13 +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;