Skip to content

Commit

Permalink
fix: 馃悰 format schema.prisma
Browse files Browse the repository at this point in the history
  • Loading branch information
yeukfei02 committed Apr 22, 2022
1 parent e3044a1 commit fab9fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prisma/schema.prisma
Expand Up @@ -139,9 +139,9 @@ model quote {
created_at DateTime @default(now())
updated_at DateTime @default(now())
@@index([created_at], map: "index_quote_on_created_at")
@@index([content], map: "index_quote_on_content")
@@index([author], map: "index_quote_on_author")
@@index([content], map: "index_quote_on_content")
@@index([created_at], map: "index_quote_on_created_at")
@@index([tags], map: "index_quote_on_tags")
@@index([updated_at], map: "index_quote_on_updated_at")
}
Expand Down

0 comments on commit fab9fb6

Please sign in to comment.