Databases

NextAuth.js comes with multiple ways of connecting to a database:

  • TypeORM (default)
    The TypeORM adapter supports MySQL, Postgres, SQLite and MongoDB databases.
  • Prisma
    The Prisma 2 adapter supports MySQL, Postgres and SQLite databases.
  • Custom Adapter
    A custom Adapter can be used to connect to any database.

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

You can specify database credentials as as a connection string or a TypeORM configuration object.

The following approaches are exactly equivalent:

database: 'mysql://username:password@127.0.0.1:3306/database_name'
database: {
type: 'mysql',
host: '127.0.0.1',
port: 3306,
username: 'nextauth',
password: 'password',
database: 'nextauth'
}
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:

'mysql://username:password@127.0.0.1:3306/database_name?entityPrefix=nextauth_'

…or as a database configuration object:

database: {
type: 'mysql',
host: '127.0.0.1',
port: 3306,
username: 'nextauth',
password: 'password',
database: 'nextauth'
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:

database: 'mysql://username:password@127.0.0.1:3306/database_name?synchronize=true'
database: {
type: 'mysql',
host: '127.0.0.1',
port: 3306,
username: 'nextauth',
password: 'password',
database: 'nextauth',
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

database: 'mysql://username:password@127.0.0.1:3306/database_name'

MariaDB

Install module: npm i mariadb

Example

database: 'mariadb://username:password@127.0.0.1:3306/database_name'

Postgres

Install module: npm i pg

Example

database: 'postgres://username:password@127.0.0.1:3306/database_name'

MongoDB

Install module: npm i mongodb

Example

database: '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

database: '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.