Skip to content

Commit

Permalink
feat: modify db schema
Browse files Browse the repository at this point in the history
  • Loading branch information
EjembiEmmanuel committed Oct 6, 2024
1 parent 1119b17 commit e41c758
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions apps/data-backend/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -117,35 +117,3 @@ model registration {
created_at DateTime? @default(now()) @db.Timestamp(6)
is_confirmed Boolean? @default(false)
}

model usdc_transfer {
transfer_id String @id
network String?
block_hash String?
block_number BigInt?
block_timestamp DateTime? @default(now()) @db.Timestamp(6)
indexed_at DateTime? @default(now()) @db.Timestamp(6)
transaction_hash String?
from_address String?
to_address String?
amount String?
index_in_block BigInt?
sender_balance String?
recipient_balance String?
created_at DateTime? @default(now()) @db.Timestamp(6)
cursor BigInt
}

model claims {
id String @id @default(uuid())
amount String?
nonce Int?
address String?
signature String?
}

model mock_limit {
address String @id
limit String?
block_timestamp DateTime? @default(now()) @db.Timestamp(6)
}

0 comments on commit e41c758

Please sign in to comment.