Skip to content

Commit

Permalink
add bonus partner to repos (#377)
Browse files Browse the repository at this point in the history
* add bonus partner to repos

* add bonus partner to repos

* ci: version bump to 0.89.1-rc-bonus-partner.0

---------

Co-authored-by: Automated Version Bump <[email protected]>
  • Loading branch information
mattcasey and Automated Version Bump authored Oct 18, 2024
1 parent b6c31a1 commit 79bbcf8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
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.89.0",
"version": "0.89.1-rc-bonus-partner.0",
"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,5 @@
-- AlterTable
ALTER TABLE "GithubRepo" ADD COLUMN "bonusPartner" TEXT;

-- CreateIndex
CREATE INDEX "GithubRepo_bonusPartner_idx" ON "GithubRepo"("bonusPartner");
2 changes: 2 additions & 0 deletions src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -2899,9 +2899,11 @@ model GithubRepo {
events GithubEvent[]
createdAt DateTime @default(now())
deletedAt DateTime?
bonusPartner String?
@@unique([owner, name])
@@index([id])
@@index([bonusPartner])
}

enum GithubEventType {
Expand Down

0 comments on commit 79bbcf8

Please sign in to comment.