From 98129eea7894685b864c382fc186ec8c2c5aad73 Mon Sep 17 00:00:00 2001 From: Mart van de Ven Date: Sun, 25 Aug 2024 07:19:45 +0800 Subject: [PATCH] Update migrations.mdx (#1122) Co-authored-by: Igal Klebanov --- site/docs/migrations.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/migrations.mdx b/site/docs/migrations.mdx index ff10c19f4..534b499a7 100644 --- a/site/docs/migrations.mdx +++ b/site/docs/migrations.mdx @@ -141,7 +141,7 @@ You can then use: ```ts const migrator = new Migrator(migratorConfig) -await migrator.migrateToLatest(pathToMigrationsFolder) +await migrator.migrateToLatest() ``` to run all migrations that have not yet been run. See the Migrator class's documentation for more info.