Skip to content

Commit

Permalink
psl: Add "prismaSchemaFolder" preview feature (#4780)
Browse files Browse the repository at this point in the history
Adds hidden preview feature only, without any implementation.

Close prisma/team-orm#1036
  • Loading branch information
Serhii Tatarintsev authored Mar 20, 2024
1 parent bbcbb6f commit dedf0b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions psl/psl-core/src/common/preview_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ features!(
TransactionApi,
UncheckedScalarInputs,
Views,
RelationJoins
RelationJoins,
PrismaSchemaFolder
);

/// Generator preview features (alphabetically sorted)
Expand Down Expand Up @@ -128,7 +129,7 @@ pub const ALL_PREVIEW_FEATURES: FeatureMap = FeatureMap {
| TransactionApi
| UncheckedScalarInputs
}),
hidden: enumflags2::BitFlags::EMPTY,
hidden: enumflags2::make_bitflags!(PreviewFeature::{PrismaSchemaFolder}),
};

#[derive(Debug)]
Expand Down

0 comments on commit dedf0b7

Please sign in to comment.