mirror of
https://github.com/NicholaiVogel/dashore-incubator.git
synced 2026-03-31 06:40:32 +00:00
Add user profile management system: - Create user_profiles table with display name, bio, theme prefs - Add profile settings page at /dashboard/settings/profile - Integrate next-themes for light/dark/system theme switching - Update sidebar to display user's profile data and avatar - Wire up Account menu link and Log out button
14 lines
336 B
SQL
14 lines
336 B
SQL
CREATE TABLE `user_profiles` (
|
|
`id` text PRIMARY KEY NOT NULL,
|
|
`email` text NOT NULL,
|
|
`display_name` text,
|
|
`first_name` text,
|
|
`last_name` text,
|
|
`bio` text,
|
|
`avatar_url` text,
|
|
`theme` text DEFAULT 'system' NOT NULL,
|
|
`email_notifications` text DEFAULT 'true' NOT NULL,
|
|
`created_at` text NOT NULL,
|
|
`updated_at` text NOT NULL
|
|
);
|