monorepo migration folder bundling
I have a turborepo monorepo. Trying to have db as a separate internal package along with its migrations folder but the migrate function uses the migrations folder from the client app rather than the package itself
export const initialMigration = () =>
migrate(db, { migrationsFolder: "../drizzle" });