@trycompai/db 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schema.prisma +11 -0
- package/package.json +1 -1
package/dist/schema.prisma
CHANGED
|
@@ -124,6 +124,17 @@ model Verification {
|
|
|
124
124
|
updatedAt DateTime @updatedAt
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
+
// JWT Plugin - Required by Better Auth JWT plugin
|
|
128
|
+
// https://www.better-auth.com/docs/plugins/jwt
|
|
129
|
+
model Jwks {
|
|
130
|
+
id String @id @default(dbgenerated("generate_prefixed_cuid('jwk'::text)"))
|
|
131
|
+
publicKey String
|
|
132
|
+
privateKey String
|
|
133
|
+
createdAt DateTime @default(now())
|
|
134
|
+
|
|
135
|
+
@@map("jwks")
|
|
136
|
+
}
|
|
137
|
+
|
|
127
138
|
model Member {
|
|
128
139
|
id String @id @default(dbgenerated("generate_prefixed_cuid('mem'::text)"))
|
|
129
140
|
organizationId String
|