File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
generators/with-postgres-prisma/templates Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1212 },
1313 "scripts" : {
1414 "prisma" : " node_modules/.bin/prisma" ,
15- "prisma:db-push" : " yarn prisma: db push --schema src/db/postgres.prisma --preview-feature" ,
16- "prisma:db-seed" : " yarn prisma: db seed --schema src/db/postgres.prisma --preview-feature" ,
15+ "prisma:db-push" : " yarn prisma db push --schema src/db/postgres.prisma --preview-feature" ,
16+ "prisma:db-seed" : " yarn prisma db seed --schema src/db/postgres.prisma --preview-feature" ,
1717 "prisma:generate" : " yarn prisma generate --schema src/db/postgres.prisma" ,
1818 "prisma:generate-watch" : " yarn prisma:generate --watch" ,
1919 "postinstall" : " yarn prisma:generate" ,
3939 "express" : " *" ,
4040 "http-status-codes" : " *" ,
4141 "morgan" : " *" ,
42+ "pluralize" : " *" ,
4243 "source-map-support" : " *" ,
4344 "yup" : " *"
4445 },
4849 "@boringcodes/prettier-config" : " *" ,
4950 "@types/express" : " *" ,
5051 "@types/morgan" : " *" ,
52+ "@types/pluralize" : " *" ,
5153 "@types/yup" : " *" ,
5254 "@typescript-eslint/eslint-plugin" : " *" ,
5355 "@typescript-eslint/parser" : " *" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ generator client {
88}
99
1010model Thing {
11+ @@map (name : " things " )
1112 id Int @id @default (autoincrement () )
1213 name String ?
1314}
You can’t perform that action at this time.
0 commit comments