dashore-incubator/drizzle/0003_talented_lockheed.sql
Nicholai b39329d432 feat(settings): add user profile settings with theme toggle
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
2026-01-22 05:41:11 -07:00

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
);