File tree Expand file tree Collapse file tree
migrations/20251103175338_make_user_uuid_required Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /*
2+ Warnings:
3+
4+ - Made the column `uuid` on table `users` required. This step will fail if there are existing NULL values in that column.
5+
6+ */
7+ -- AlterTable
8+ ALTER TABLE " public" ." users" ALTER COLUMN " uuid" SET NOT NULL ;
Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ model TravelSchedule {
349349// It holds Personal Profiles of a User plus it has email, password and other core things..
350350model User {
351351 id Int @id @default (autoincrement () )
352- uuid String ? @unique @default (uuid () ) @db.Uuid
352+ uuid String @unique @default (uuid () ) @db.Uuid
353353 username String ?
354354 name String ?
355355 /// @zod.import(["import { emailSchema } from '@calcom/lib/emailSchema'"]).custom.use(emailSchema)
You can’t perform that action at this time.
0 commit comments