Skip to content

Commit

Permalink
Remove scout wallet address
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinludu committed Oct 30, 2024
1 parent d4d5b47 commit 22a9db2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
Warnings:
- You are about to drop the column `walletAddress` on the `Scout` table. All the data in the column will be lost.
*/
-- DropIndex
DROP INDEX "Scout_walletAddress_idx";

-- AlterTable
ALTER TABLE "Scout" DROP COLUMN "walletAddress";
2 changes: 0 additions & 2 deletions src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -2795,7 +2795,6 @@ model Scout {
displayName String
farcasterId Int? @unique
farcasterName String? // every user only has one farcaster account
walletAddress String? // grab most recent wallet when someone signs in w/farcaster
walletENS String?
avatar String?
bio String?
Expand All @@ -2822,7 +2821,6 @@ model Scout {
@@index([path])
@@index([farcasterId])
@@index([walletAddress])
}

model BuilderStrike {
Expand Down

0 comments on commit 22a9db2

Please sign in to comment.