Skip to content

Commit

Permalink
fix: change sleepDurationMs from int to bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Sep 25, 2023
1 parent 424b5cd commit 2e4ad7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Subscription" ALTER COLUMN "sleepDurationMs" SET DATA TYPE BIGINT;
2 changes: 1 addition & 1 deletion schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ model Subscription {
message String?
payerData String? // LUD-18 encoded JSON payer data
sleepDuration String
sleepDurationMs Int?
sleepDurationMs BigInt?
createdDateTime DateTime @default(now())
lastEventDateTime DateTime?
lastSuccessfulPaymentDateTime DateTime?
Expand Down

0 comments on commit 2e4ad7a

Please sign in to comment.