Prisma generate accepts a --schema argument for when your schema doesn't live in prisma/.
Prisma migrate also has this option, but does not document it in the --help output.
Document --schema to prisma migrate, same as prisma generate.
@flybayer Prisma migrate also accepts --schema in the args. For eg.
npx prisma migrate up -c --auto-approve --schema="path/to/schema/schema.prisma" --experimental does work.
One other feature which was filed by @janpio here: https://github.com/prisma/migrate/issues/361 is to use --migrations which is not yet supported.
Updated the issue to indicate that this is "only" missing in the --help output and thus hard/impossible to discover.
New output 馃挴

Most helpful comment
Updated the issue to indicate that this is "only" missing in the
--helpoutput and thus hard/impossible to discover.