mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 14:41:28 -07:00
6 lines
302 B
SQL
6 lines
302 B
SQL
-- Store the player's avatar (set via the econ worker's /api/avatar/v2/set). It's
|
|
-- an opaque JSON payload that isn't queried, so a single nullable TEXT column on
|
|
-- the account row suffices. Kept in sync with SCHEMA_DDL in @repo/domain's accounts-db.ts.
|
|
|
|
ALTER TABLE accounts ADD COLUMN avatar TEXT;
|