Skip to content

Commit

Permalink
Jackson namespace column schema update (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
niwsa authored May 31, 2024
1 parent 1e2864a commit 36f1c77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "jackson_store" ALTER COLUMN "namespace" SET DATA TYPE VARCHAR(256);
3 changes: 1 addition & 2 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ model Account {
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
@@unique([provider, providerAccountId])
@@index([userId])
}

Expand Down Expand Up @@ -192,7 +191,7 @@ model jackson_store {
tag String? @db.VarChar(64)
createdAt DateTime @default(now()) @db.Timestamp(6)
modifiedAt DateTime? @db.Timestamp(6)
namespace String? @db.VarChar(64)
namespace String? @db.VarChar(256)
jackson_index jackson_index[]
Expand Down

0 comments on commit 36f1c77

Please sign in to comment.