Skip to content

Commit

Permalink
Made telegramid big int
Browse files Browse the repository at this point in the history
  • Loading branch information
Devorein committed Nov 6, 2024
1 parent 4f315b0 commit 40e5a8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- AlterEnum
ALTER TYPE "BuilderEventType" ADD VALUE 'daily_claim';

-- AlterTable
ALTER TABLE "Scout" ALTER COLUMN "telegramId" SET DATA TYPE BIGINT;
2 changes: 1 addition & 1 deletion src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -2795,7 +2795,7 @@ model Scout {
displayName String
farcasterId Int? @unique
farcasterName String? // every user only has one farcaster account
telegramId Int? @unique
telegramId BigInt? @unique
walletENS String?
avatar String?
bio String?
Expand Down

0 comments on commit 40e5a8b

Please sign in to comment.