fdb9f96382
- Add phone/birthday columns via Prisma migration - Admin user page shows phone and birthday with inline edit UI - UserContactEditor client component for editing contact info - updateUserContact server action with admin-only guard Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
4 lines
113 B
SQL
4 lines
113 B
SQL
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "phone" TEXT;
|
|
ALTER TABLE "User" ADD COLUMN "birthday" TIMESTAMP(3);
|