We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would be great if we can use kysely migrations. That should be achieved by disabling transactions
Currently we have this error
{ error: [VercelPostgresError: VercelPostgresError - 'kysely_transactions_not_supported': Transactions are not supported yet.] { code: 'kysely_transactions_not_supported', name: 'VercelPostgresError' }
I think this could be useful
https://kysely-org.github.io/kysely-apidoc/interfaces/DialectAdapter.html#supportsTransactionalDdl
The text was updated successfully, but these errors were encountered:
This could solve the issue
#307 (review)
Sorry, something went wrong.
Please help us! We need to finalize a project with this fix. 😬
@marciomunhoz
You can use this until vercel fixes this trivial
Object.defineProperty( db.getExecutor().adapter, 'supportsTransactionalDdl', () => false, )
although it is something absurdly horrible, it works.
vvo
Successfully merging a pull request may close this issue.
I would be great if we can use kysely migrations. That should be achieved by disabling transactions
Currently we have this error
I think this could be useful
https://kysely-org.github.io/kysely-apidoc/interfaces/DialectAdapter.html#supportsTransactionalDdl
The text was updated successfully, but these errors were encountered: