From 778350e5d6a59c4670251ca6b6e0419f801368ba Mon Sep 17 00:00:00 2001 From: Amelia Ikeda Date: Mon, 17 Oct 2016 16:59:44 +0100 Subject: [PATCH] Fix a method naming error --- src/Illuminate/Database/Migrations/Migrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Database/Migrations/Migrator.php b/src/Illuminate/Database/Migrations/Migrator.php index b3f271f67858..49e7ac4dcb26 100755 --- a/src/Illuminate/Database/Migrations/Migrator.php +++ b/src/Illuminate/Database/Migrations/Migrator.php @@ -159,7 +159,7 @@ protected function runUp($file, $batch, $pretend) return $this->pretendToRun($migration, 'up'); } - $this->migrate($migration, 'up'); + $this->runMigration($migration, 'up'); // Once we have run a migrations class, we will log that it was run in this // repository so that we don't try to run it next time we do a migration