Skip to content

Commit

Permalink
chore: Remove deprecated option
Browse files Browse the repository at this point in the history
  • Loading branch information
unlight committed Jul 4, 2023
1 parent a566cca commit 4d213e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ datasource database {

generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearch", "fieldReference", "filteredRelationCount"]
previewFeatures = ["fullTextSearch", "fieldReference"]
}

generator nestgraphql {
Expand Down
2 changes: 1 addition & 1 deletion src/test/test-generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ async function createGeneratorOptions(
}
generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearch", "fullTextIndex", "fieldReference", "filteredRelationCount"]
previewFeatures = ["fullTextSearch", "fullTextIndex", "fieldReference"]
}
`;
// eslint-disable-next-line prefer-rest-params
Expand Down

0 comments on commit 4d213e0

Please sign in to comment.