From 021c2a8d6aed86a1e7dc8af385d0d87a948712f2 Mon Sep 17 00:00:00 2001 From: David Carr Date: Tue, 17 Mar 2026 01:39:50 +0000 Subject: [PATCH] fix: set default value for migration table configuration key --- src/Migrations/Migrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Migrations/Migrator.php b/src/Migrations/Migrator.php index b4d1cf3a3..c294a28b8 100644 --- a/src/Migrations/Migrator.php +++ b/src/Migrations/Migrator.php @@ -241,7 +241,7 @@ public function requireFiles(array $files) */ public function table() { - return $this->laravel['db']->connection($this->database ?: null)->table(config('database.migrations.table')); + return $this->laravel['db']->connection($this->database ?: null)->table(config('database.migrations.table', 'migrations')); } /**