- Added Server Configuration settings page (backend + frontend) - Added .env config download/import API - Runtime config updates via UI - Support for all 3 themes (default, air, berry) - i18n support (zh/en)
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
|
|
)
|