* feat(adapter): remove built-in adapters and database BREAKING CHANGE: From now on, you will have to import your own adapter Check out https://github.com/nextauthjs/adapters The migration is super easy and has HUGE advantages for those not using TypeORM. ```diff // [...nextauth].js + import TypeORMAdapter from "@next-auth/typeorm-legacy-adapter" import NextAuth from "next-auth" ... export default NextAuth({ - database: "yourconnectionstring", + adapter: TypeORMAdapter("yourconnectionstring") }) ``` Co-authored-by: Lluis Agusti <hi@llu.lu> Co-authored-by: Giovanni Carnel <479046+g10@users.noreply.github.com>
5.9 KiB
id, title
| id | title |
|---|---|
| databases | Databases |
NextAuth.js comes with multiple ways of connecting to a database:
- TypeORM (default)
The TypeORM adapter supports MySQL, PostgreSQL, MSSQL, SQLite and MongoDB databases. - Prisma
The Prisma 2 adapter supports MySQL, PostgreSQL and SQLite databases. - Fauna
The FaunaDB adapter only supports FaunaDB. - Custom Adapter
A custom Adapter can be used to connect to any database.
There are currently efforts in the
nextauthjs/adaptersrepository to get community-based DynamoDB, Sanity, PouchDB and Sequelize Adapters merged. If you are interested in any of the above, feel free to check out the PRs in thenextauthjs/adaptersrepository!
This document covers the default adapter (TypeORM).
See the documentation for adapters to learn more about using Prisma adapter or using a custom adapter.
To learn more about databases in NextAuth.js and how they are used, check out databases in the FAQ.
How to use a database
How to use a database
You can specify database credentials as a TypeORM configuration object or connection string:
import TypeORMAdapter from "@next-auth/typeorm-legacy-adapter"
import NextAuth from "next-auth"
export default NextAuth({
adapter: TypeORMAdapter(
"mysql://nextauth:password@127.0.0.1:3306/database_name"
),
// or...
adapter: TypeORMAdapter({
type: "mysql",
host: "127.0.0.1",
port: 3306,
username: "nextauth",
password: "password",
database: "database_name",
}),
})
Both approaches are exactly equivalent:
:::tip You can pass in any valid TypeORM configuration option.
e.g. To set a prefix for all table names you can use the entityPrefix option as connection string parameter:
adapter: TypeORMAdapter(
"mysql://nextauth:password@127.0.0.1:3306/database_name?entityPrefix=nextauth_"
)
…or as a database configuration object:
adapter: TypeORMAdapter({
type: "mysql",
host: "127.0.0.1",
port: 3306,
username: "nextauth",
password: "password",
database: "database_name",
entityPrefix: "nextauth_",
})
:::
Setting up a database
Using SQL to create tables and columns is the recommended way to set up an SQL database for NextAuth.js.
Check out the links below for SQL you can run to set up a database for NextAuth.js.
If you are running SQLite, MongoDB or a Document database you can skip this step.
Alternatively, you can also have your database configured automatically using the synchronize: true option:
adapter: TypeORMAdapter(
"mysql://nextauth:password@127.0.0.1:3306/database_name?synchronize=true"
)
adapter: TypeORMAdapter({
type: "mysql",
host: "127.0.0.1",
port: 3306,
username: "nextauth",
password: "password",
database: "database_name",
synchronize: true,
})
:::warning
The synchronize option should not be used against production databases.
It is useful to create the tables you need when setting up a database for the first time, but it should not be enabled against production databases as it may result in data loss if there is a difference between the schema that found in the database and the schema that the version of NextAuth.js being used is expecting. :::
Supported databases
The default database adapter is TypeORM, but only some databases supported by TypeORM are supported by NextAuth.js as custom logic needs to be handled by NextAuth.js.
Databases compatible with MySQL, Postgres and MongoDB should work out of the box with NextAuth.js. When used with any other database, NextAuth.js will assume an ANSI SQL compatible database.
:::tip When configuring your database you also need to install an appropriate node module for your database. :::
MySQL
Install module:
npm i mysql
Example
adapter: TypeORMAdapter(
"mysql://username:password@127.0.0.1:3306/database_name"
)
MariaDB
Install module:
npm i mariadb
Example
adapter: TypeORMAdapter(
"mariadb://username:password@127.0.0.1:3306/database_name"
)
Postgres / CockroachDB
Install module:
npm i pg
Example
PostgresDB
adapter: TypeORMAdapter(
"postgres://username:password@127.0.0.1:5432/database_name"
)
CockroachDB
adapter: TypeORMAdapter(
"postgres://username:password@127.0.0.1:26257/database_name"
)
If the node is using Self-signed cert
adapter: TypeORMAdapter({
type: "cockroachdb",
host: process.env.DATABASE_HOST,
port: 26257,
username: process.env.DATABASE_USER,
password: process.env.DATABASE_PASSWORD,
database: process.env.DATABASE_NAME,
ssl: {
rejectUnauthorized: false,
ca: fs.readFileSync("/path/to/server-certificates/root.crt").toString(),
},
})
Read more: https://node-postgres.com/features/ssl
Microsoft SQL Server
Install module:
npm i mssql
Example
adapter: TypeORMAdapter("mssql://sa:password@localhost:1433/database_name")
MongoDB
Install module:
npm i mongodb
Example
adapter: TypeORMAdapter(
"mongodb://username:password@127.0.0.1:3306/database_name"
)
SQLite
SQLite is intended only for development / testing and not for production use.
Install module:
npm i sqlite3
Example
adapter: TypeORMAdapter("sqlite://localhost/:memory:")
Other databases
See the documentation for adapters for more information on advanced configuration, including how to use NextAuth.js with other databases using a custom adapter.