aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/query/highlights/prisma/test.prisma7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/query/highlights/prisma/test.prisma b/tests/query/highlights/prisma/test.prisma
index 9e185cfb5..6a5795699 100644
--- a/tests/query/highlights/prisma/test.prisma
+++ b/tests/query/highlights/prisma/test.prisma
@@ -54,3 +54,10 @@ enum ReactionType {
ANGRY
// ^ constant
}
+
+view ReactionView {
+// ^ keyword
+ id Int @unique
+ postId Int
+ userId String
+}