Skip to content

Commit 48a5be9

Browse files
committed
Finish up some eidts
1 parent dea725b commit 48a5be9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

module2-database-technologies/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,10 @@ want to get all the posts for a user, you don't have to think so hard about
306306
concepts such as joins. The same goes at insertion time: you don't have to think
307307
too hard about foreign keys.
308308

309-
Here is an example from another Node ORM, Prisma:
309+
Here is an example from another Node ORM, Prisma. Knowing Prisma is not
310+
particularly important for this example; even without knowing how Prisma works,
311+
try to understand what the code below tries to do.
312+
310313
```
311314
const createCategory = await prisma.post.create({
312315
data: {

0 commit comments

Comments
 (0)