Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
- POST /konto/avatar: upload, center-crop to square, resize 300x300 - POST /konto/avatar/delete: remove file and clear DB - dane.html: interactive avatar editor with hover overlay - person_detail.html: show photo if available, fallback to initials - Migration 070: avatar_path column on users table Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
255 B
SQL
8 lines
255 B
SQL
-- Migration: Add avatar_path to users table
|
|
-- Author: Maciej Pienczyn
|
|
-- Date: 2026-03-12
|
|
|
|
ALTER TABLE users ADD COLUMN IF NOT EXISTS avatar_path VARCHAR(500);
|
|
|
|
COMMENT ON COLUMN users.avatar_path IS 'Path to profile photo relative to static/uploads/';
|