Remove user-facing new-api naming; Docker/network/container names use heicode. Go imports updated; Dockerfiles and workflows ldflags fixed. Made-with: Cursor
7 lines
118 B
SQL
7 lines
118 B
SQL
UPDATE users
|
|
SET quota = quota + (
|
|
SELECT SUM(remain_quota)
|
|
FROM tokens
|
|
WHERE tokens.user_id = users.id
|
|
)
|