Skip to content

Commit

Permalink
refac: modify prisma schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ooochoche committed Dec 1, 2024
1 parent f11af87 commit d76a86c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ datasource db {
}

model campaign {
id Int @id
token_id Int
campaign_address String
campaign_owner String
totalDonations Int
id Int @id @default(autoincrement())
token_id Int
campaign_address String
campaign_owner String
totalDonations Int
token_giver_nft_contract_address String
createdAt DateTime
createdAt DateTime
}

0 comments on commit d76a86c

Please sign in to comment.