You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This prisma file seems to break the syntax highlighting, not sure why.
Says: E363: pattern uses more memory than 'maxmempattern'
Syntax highlighting stops at the comment right before the Question model.
// This is your Prisma schema file,// learn more about it in the docs: https://pris.ly/d/prisma-schemadatasourcedb {provider="sqlite"url=env("DATABASE_URL")}generatorclient {provider="prisma-client-js"}// --------------------------------------modelUser {idInt@id@default(autoincrement())createdAtDateTime@default(now())updatedAtDateTime@updatedAtnameString?emailString@uniquehashedPasswordString?roleString@default("USER")tokensToken[]sessionsSession[]}modelSession {idInt@id@default(autoincrement())createdAtDateTime@default(now())updatedAtDateTime@updatedAtexpiresAtDateTime?handleString@uniquehashedSessionTokenString?antiCSRFTokenString?publicDataString?privateDataString?userUser?@relation(fields: [userId], references: [id])userIdInt?}modelToken {idInt@id@default(autoincrement())createdAtDateTime@default(now())updatedAtDateTime@updatedAthashedTokenStringtypeString// See note below about TokenType enum// type TokenTypeexpiresAtDateTimesentToStringuserUser@relation(fields: [userId], references: [id])userIdInt@@unique([hashedToken, type])}// NOTE: It's highly recommended to use an enum for the token type// but enums only work in Postgres.// See: https://blitzjs.com/docs/database-overview#switch-to-postgre-sql// enum TokenType {// RESET_PASSWORD// }modelQuestion {idInt@id@default(autoincrement())createdAtDateTime@default(now())updatedAtDateTime@updatedAttextStringchoicesChoice[]}modelChoice {idInt@id@default(autoincrement())createdAtDateTime@default(now())updatedAtDateTime@updatedAttextStringvotesInt@default(0)questionQuestion@relation(fields: [questionId], references: [id])questionIdInt}
The text was updated successfully, but these errors were encountered:
Yeah, it is dupe of #4. I haven't found a good way yet to do block level highlights which avoiding this issue. You can try this workaround: #4 (comment)
This prisma file seems to break the syntax highlighting, not sure why.
Says:
E363: pattern uses more memory than 'maxmempattern'
Syntax highlighting stops at the comment right before the
Question
model.The text was updated successfully, but these errors were encountered: