Add migration 000064 renaming avatar_url column; expose profile_picture in API, sqlc, and Swagger. Co-authored-by: Cursor <cursoragent@cursor.com>
4 lines
159 B
SQL
4 lines
159 B
SQL
-- Persona profile image URL stored as profile_picture (replaces avatar_url naming).
|
|
ALTER TABLE lms_personas
|
|
RENAME COLUMN avatar_url TO profile_picture;
|