-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
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
migrator class doesn't allow specifying a schema to put migration tables #80
Comments
So kysely should also create the schema right? Or can we expect it to exist? |
Great question. |
You can specify the schema like this new Migrator({
migrationTableSchema: 'some_schema'
}) in the next version. |
Released in 0.18.1 |
Is there any implementation available for MSSQL? |
I'm having an issue where, even though I did: new Migrator({
migrationTableSchema: 'my_schema'
}) it creates the 2 |
@rafaelbsky that's what it's supposed to do. You can bind your |
It would be really nice if users could specify a schema to put the
kysely_migration
tables in (at least when using postgres I'm not sure how it would translate in other databases)If this is already an existing feature I couldn't find it in the docs..
The text was updated successfully, but these errors were encountered: