Add avatar_url column to users table and create migration scripts for adding and removing it

This commit is contained in:
Leon Bösche
2026-01-29 10:45:08 +01:00
parent 688cec90a8
commit 071f32ddea
3 changed files with 3 additions and 4 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE users ADD COLUMN avatar_url TEXT;

View File

@@ -0,0 +1 @@
ALTER TABLE users DROP COLUMN avatar_url;