Using DELIMITER function in migration
Hi everyone,
we have been trying to use the DELIMITER function within a prisma migration, but this fails, while the sql executed within mysql workbench was successfully executed.
We also found the following threads:
https://github.com/prisma/prisma/issues/12912 (still open issue, since 2022)
Is there already a solution for this or can there be a fix deployed for that?
we have been trying to use the DELIMITER function within a prisma migration, but this fails, while the sql executed within mysql workbench was successfully executed.
We also found the following threads:
https://github.com/prisma/prisma/issues/12912 (still open issue, since 2022)
Is there already a solution for this or can there be a fix deployed for that?
GitHub
Bug description When I use delimiter command in migration file, the migration itself fails because of the invalid syntax. However the syntax is valid and when called from other tools, it works. I s...