diff --git a/.gitignore b/.gitignore index 2a5357b..bbffc8a 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,7 @@ next-env.d.ts .idea/ .vscode/ + +bun.lockb +pnpm-lock.yaml +pnpm-workspace.yaml \ No newline at end of file diff --git a/prisma/schema.prisma b/prisma/schema.prisma index defc9fd..c84a1b3 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1,6 +1,5 @@ generator client { provider = "prisma-client-js" - // output = "./generated/prisma/client" } datasource db { @@ -11,10 +10,10 @@ datasource db { model User { id Int @id @default(autoincrement()) username String @unique - phone String? - email String? + phone String? + email String? password String? - kakao_id String? + kakao_id String? avatar String? created_at DateTime @default(now()) updated_at DateTime @updatedAt