docs/databases/new.md
If you are using a database that is not currently supported by Sequelize, there are a few options available to you:
You can request support for a new dialect by creating a feature request on the Sequelize repository. Make sure to verify that there isn't already an open issue for the dialect you are requesting. View the list of requests for new dialects here.
We have conditions for accepting new dialects:
It is also possible to sponsor the development of a new dialect. If you are interested in this option, please contact us via email. Please keep in mind that the above conditions still apply to sponsored dialects, and that implementing a new dialect can be a significant investment.
If the dialect matches the requirements, we will consider implementing a new dialect once it is requested by enough users, or if it is sponsored. Individual contributors may also contribute a new dialect if they wish.
:::important
We do not accept new dialects for Sequelize 6.
:::
If you wish to open a pull request to add a new dialect, please follow the steps below:
:::important
While we are slowly working towards providing a stable public API to create third-party dialects, many necessary APIs are still internal and subject to change.
If you do implement a third-party dialect, please be aware that it may break in future non-major versions of Sequelize.
:::
If your dialect does not match the requirements for inclusion in Sequelize, you can create a third-party dialect.
Each dialect is a separate package that extends Sequelize with the necessary functionality to connect to the database. Third-party dialects can be published on npm and used in your project like any other package.
Consider exploring the source code of an existing dialect package to understand how it works. We unfortunately do not have a guide for creating a new dialect at this time.