From 0c67c6df251b6c891ffb7ce6ce62dc64605c6183 Mon Sep 17 00:00:00 2001 From: Aleix Morgadas Date: Tue, 18 Jul 2023 09:13:55 +0200 Subject: [PATCH] fix doc typo (#474) --- src/guide/migrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/migrations.md b/src/guide/migrations.md index 50f577b1..6954e152 100644 --- a/src/guide/migrations.md +++ b/src/guide/migrations.md @@ -550,7 +550,7 @@ Seed and migration files need to follow Knex conventions * Same as with the CommonJS modules * You will need to export a "seed" named function. * */ -export function seed(next) { +export function seed(knex) { // ... seed logic here }