mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
feat: Add profile pictures to OAuth users (#3855)
This supports GitHub and OIDC login for profile pictures!
This commit is contained in:
2
coderd/database/migrations/000044_user_avatars.down.sql
Normal file
2
coderd/database/migrations/000044_user_avatars.down.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE users
|
||||
DROP COLUMN avatar_url;
|
2
coderd/database/migrations/000044_user_avatars.up.sql
Normal file
2
coderd/database/migrations/000044_user_avatars.up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE users
|
||||
ADD COLUMN avatar_url varchar(64);
|
Reference in New Issue
Block a user