diff --git a/content/guides/database/introduction.md b/content/guides/database/introduction.md index 0bf1932..11f4b50 100644 --- a/content/guides/database/introduction.md +++ b/content/guides/database/introduction.md @@ -293,7 +293,7 @@ Lucid will queue new queries when the pool is full and waits for the pool to hav ```ts { mysql: { - client: 'mysql', + client: 'mysql2', connection: {}, // highlight-start pool: { @@ -316,7 +316,7 @@ You can configure the pool settings for a given connection inside the `config/da { connections: { mysql: { - client: 'mysql', + client: 'mysql2', connection: { }, // highlight-start @@ -407,7 +407,7 @@ npm i mysql2 ```ts mysql: { - client: 'mysql', + client: 'mysql2', connection: { host: Env.get('MYSQL_HOST'), port: Env.get('MYSQL_PORT'), diff --git a/content/guides/database/migrations.md b/content/guides/database/migrations.md index 3233c63..74b3a36 100644 --- a/content/guides/database/migrations.md +++ b/content/guides/database/migrations.md @@ -274,7 +274,7 @@ Define the migrations path next to the database connection config. ```ts { users: { - client: 'mysql', + client: 'mysql2', migrations: { // highlight-start paths: ['./database/users/migrations'] @@ -282,7 +282,7 @@ Define the migrations path next to the database connection config. } }, products: { - client: 'mysql', + client: 'mysql2', migrations: { // highlight-start paths: ['./database/products/migrations'] @@ -393,7 +393,7 @@ The configuration for migrations is stored inside the `config/database.ts` file ```ts { mysql: { - client: 'mysql', + client: 'mysql2', migrations: { naturalSort: true, disableTransactions: false, diff --git a/content/guides/database/seeders.md b/content/guides/database/seeders.md index f9055cb..3a4e76c 100644 --- a/content/guides/database/seeders.md +++ b/content/guides/database/seeders.md @@ -156,7 +156,7 @@ Define the paths for loading the database seeder files. You can also define a pa ```ts { mysql: { - client: 'mysql', + client: 'mysql2', seeders: { paths: ['./database/seeders', '@somepackage/seeders-dir'] } @@ -188,7 +188,7 @@ After the following change, the `db:seed` command will scan the `./database/seed ```ts { mysql: { - client: 'mysql', + client: 'mysql2', // ... rest of the config seeders: { paths: ['./database/seeders/MainSeeder']