lang-database 9.0.0 → 9.0.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/package.json +1 -1
- package/schema.prisma +2 -2
- package/.env-dev.example +0 -3
- package/.env-local.example +0 -3
- package/.env-prod.example +0 -3
- package/.env-test.example +0 -3
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -75,7 +75,7 @@ model User {
|
|
|
75
75
|
purchases Purchase[]
|
|
76
76
|
packs Pack[]
|
|
77
77
|
userCards UserCard[]
|
|
78
|
-
|
|
78
|
+
userAnswers UserAnswer[]
|
|
79
79
|
subscriptionExpire DateTime?
|
|
80
80
|
team Team? @relation(fields: [teamId], references: [id])
|
|
81
81
|
teamId String?
|
|
@@ -141,7 +141,7 @@ model UserAnswer {
|
|
|
141
141
|
cardId String
|
|
142
142
|
answer Answer
|
|
143
143
|
timestamp DateTime
|
|
144
|
-
@@map("
|
|
144
|
+
@@map("userAnswers")
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
enum Answer {
|
package/.env-dev.example
DELETED
package/.env-local.example
DELETED
package/.env-prod.example
DELETED
package/.env-test.example
DELETED