lang-database 8.0.6 → 8.1.0

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/schema.prisma +1 -0
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "lang-database",
3
- "version": "8.0.6",
3
+ "version": "8.1.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "scripts": {
8
- "generate": "prisma generate",
8
+ "generate": "npx prisma generate",
9
9
  "push-dev-dbs": "npm run push-dev-db && npm run push-local-db && npm run push-test-db",
10
10
  "push-prod-db": "copy .env-prod .env && prisma db push --skip-generate",
11
11
  "push-dev-db": "copy .env-dev .env && prisma db push --skip-generate",
package/schema.prisma CHANGED
@@ -14,6 +14,7 @@ model Card {
14
14
  packId String
15
15
  front String
16
16
  back String
17
+ info String
17
18
  lastUpdate DateTime @default(now())
18
19
  userCards UserCard[]
19
20
  speechGenerated Boolean @default(false)