Skip to content

Commit

Permalink
Merge pull request #897 from Sn-Kinos/patch-1
Browse files Browse the repository at this point in the history
Fix highlight on code
  • Loading branch information
samchon authored Dec 6, 2023
2 parents 0822daa + 6f06ae2 commit 3b256a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/pages/docs/utilization/prisma.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Tabs, Tab } from 'nextra-theme-docs'
<code>.prisma/client</code>,
]}>
<Tab>
```prisma copy filename="prisma.schema" showLineNumbers {2, 10, 11, 14-15}
```prisma copy filename="prisma.schema" showLineNumbers {2, 5, 10, 11, 14-15}
model bbs_articles {
id String @id @db.Uuid /// @format uuid
created_at DateTime @db.Timestamptz
Expand Down Expand Up @@ -70,4 +70,4 @@ export type bbs_article_snapshots = {
When defining `prisma.schema` file, you can write comment tags just by using `///` statement.

After the definition, you utillize some validate function like [`typia.assert<T>()`](/docs/validators/assert), for type safe insertion.
After the definition, you utillize some validate function like [`typia.assert<T>()`](/docs/validators/assert), for type safe insertion.

0 comments on commit 3b256a5

Please sign in to comment.