Skip to content

Commit 8475f47

Browse files
committed
fix: docs: 110-native-database-types.mdx: add missing space
1 parent 6c347e8 commit 8475f47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/200-orm/300-prisma-migrate/300-workflows/110-native-database-types.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ CREATE TABLE "Post" (
8080
);
8181

8282
-- AddForeignKey
83-
ALTER TABLE "Post" ADD FOREIGN KEY("authorId")REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
83+
ALTER TABLE "Post" ADD FOREIGN KEY("authorId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
8484
```
8585

8686
### Mappings by Prisma ORM type

0 commit comments

Comments
 (0)