From 8cebc0cd203af76cbfed90f47a6cd083f98b2465 Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Thu, 28 May 2026 16:43:21 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20db:=20remove=20oauth=20?= =?UTF-8?q?profile=20from=20user=20schema=20to=20avoid=20duplication?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prisma/schema.prisma | 2 -- 1 file changed, 2 deletions(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 0aeca59..e492eb2 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -118,8 +118,6 @@ model User { sex user_sex? phone_number String? @db.VarChar(20) country Country? @relation(fields: [countryId], references: [id], name: "UserCountry") - auth_provider String? @db.VarChar(64) - provider_token String? @db.VarChar(255) address UserAddress? preferences UserPreference? created_at DateTime @default(now()) @db.Timestamptz()