Skip to content

Commit

Permalink
Update header.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomheaton authored Sep 8, 2023
1 parent 8770837 commit 8f9fa1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/generator/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn find_migrations_path(schema_path: &PathBuf) -> PathBuf {
.parent()
.map(|p| p.join("migrations"))
.filter(|p| p.exists())
.expect("Migrations folder not found! Please create one in the same directory as your schema.prisma file.")
.expect("Migrations folder not found! Please create one in the same folder as your schema.prisma file.")
}

pub fn generate(args: &GenerateArgs) -> TokenStream {
Expand Down

0 comments on commit 8f9fa1a

Please sign in to comment.