Nasa
Nasa
PPrisma
Created by Nasa on 4/8/2025 in #help-and-questions
Migrations and Build breaking after the new version of 6.6.0
Thanks @Nurul
13 replies
PPrisma
Created by Nasa on 4/8/2025 in #help-and-questions
Migrations and Build breaking after the new version of 6.6.0
No, I never updated to 6.6.0 version When prisma released v6.6.0 which happened today, our build pipeline, started to break Then after many git issues and community search here in discord, I moved my version from 6.0.1 to 6.3.1 I did made few changes - adding schema folder path in package.json - moving migrations folder into schema folder where data_source prisma is saved [this change fixed the issues, but long run doesn't seem to look good for me, from folder managing pov, would highly support for the suggestion I made, above] There is an open issue about this matter here: https://github.com/prisma/prisma/issues/26840 Please be noted this occurs for users who are using prismaSchemaFolder preview flag Thanks
13 replies
PPrisma
Created by Nasa on 4/8/2025 in #help-and-questions
Migrations and Build breaking after the new version of 6.6.0
Thanks for the help, I was able to fix my issue by upgrading to 6.3.1 If I could suggest, it would be nice if we have a new migrations field to existing prisma object in package.json
"prisma": {
"seed": "ts-node prisma/seed.ts",
"schema": "prisma/schema",
"migrations": "prisma/migrations" // new field suggestion
}
"prisma": {
"seed": "ts-node prisma/seed.ts",
"schema": "prisma/schema",
"migrations": "prisma/migrations" // new field suggestion
}
this way, we can have a good folder out look, instead of having migrations folder amongst the prisma files Thanks 🙂
13 replies
PPrisma
Created by Nasa on 4/8/2025 in #help-and-questions
Migrations and Build breaking after the new version of 6.6.0
Is moving migrations into the schema folder the only way? @Prisma AI Help
13 replies
PPrisma
Created by Nasa on 4/8/2025 in #help-and-questions
Migrations and Build breaking after the new version of 6.6.0
this change now shows No migration found in prisma/migrations while building
13 replies