Skip to content

Commit e9a8997

Browse files
committed
fix: update openboot user avatar URL in database
Migration 0009 initially ran with wrong avatar URL (github.com/openbootdev.png). This corrective migration updates the existing openboot user record to use the correct GitHub organization avatar (avatars.githubusercontent.com/u/258731499).
1 parent 1b57691 commit e9a8997

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- Fix openboot user avatar URL (correcting migration 0009)
2+
3+
UPDATE users
4+
SET avatar_url = 'https://avatars.githubusercontent.com/u/258731499?v=4'
5+
WHERE id = 'openboot-official';

0 commit comments

Comments
 (0)