Skip to content

Commit

Permalink
increase category limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman035 committed Oct 29, 2024
1 parent b1d989a commit f218cea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions prisma/migrations/20241029151847_init/migration.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Transaction" ALTER COLUMN "category" SET DATA TYPE VARCHAR(128);
2 changes: 1 addition & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ model Transaction {
ts BigInt @default(0) @map("ts") // Changed to BigInt
txn_hash String @db.VarChar(128)
block_hash String @db.VarChar(128)
category String @db.VarChar(32)
category String @db.VarChar(128)
sender String @db.VarChar(128)
status String @db.VarChar(64)
from String @db.VarChar(128)
Expand Down

0 comments on commit f218cea

Please sign in to comment.