Skip to content

Commit

Permalink
Remove scout wallet address (#384)
Browse files Browse the repository at this point in the history
* Remove scout wallet address

* ci: version bump to 0.92.2-rc-feat-remove-sco.0

* ci: version bump to 0.92.2-rc-feat-remove-sco.1

---------

Co-authored-by: Automated Version Bump <[email protected]>
  • Loading branch information
valentinludu and Automated Version Bump authored Oct 30, 2024
1 parent d4d5b47 commit 10354ed
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@charmverse/core",
"version": "0.92.1",
"version": "0.92.2-rc-feat-remove-sco.1",
"description": "Core API for Charmverse",
"type": "commonjs",
"types": "./dist/cjs/index.d.ts",
Expand Down
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 10354ed

Please sign in to comment.