From f2bba9b385ecebc2bd2ff5ffa1481ae549675599 Mon Sep 17 00:00:00 2001 From: Tareq Hossain Date: Wed, 24 Oct 2018 19:09:39 +0600 Subject: [PATCH] Issue #18 solved --- src/Scaffold/MigrationCreator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Scaffold/MigrationCreator.php b/src/Scaffold/MigrationCreator.php index 44a7ba1..30a50db 100644 --- a/src/Scaffold/MigrationCreator.php +++ b/src/Scaffold/MigrationCreator.php @@ -31,7 +31,7 @@ public function create($name, $path, $table = null, $create = true) $this->files->put($path, $this->populateStub($name, $stub, $table)); - $this->firePostCreateHooks(); + $this->firePostCreateHooks($table); return $path; }