b7b6076846
- Add favicon_url column to nodes table via database migration - Create favicon upload endpoint with media handling - Implement favicon upload UI in admin panel with preview - Add favicon removal functionality in admin settings - Create BlurredVideo component for improved video rendering - Update PostCard to use new BlurredVideo component - Update node schema to include favicon_url field - Add favicon upload state management and error handling - Enables customization of browser tab icon for node branding
3 lines
106 B
SQL
3 lines
106 B
SQL
-- Add favicon_url column to nodes table
|
|
ALTER TABLE "nodes" ADD COLUMN IF NOT EXISTS "favicon_url" text;
|