From 61970559018cfcc65949b047d9db297c20d36307 Mon Sep 17 00:00:00 2001 From: glmdev Date: Fri, 30 Dec 2016 05:34:14 +0000 Subject: [PATCH] updated README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 20082ce..2da41f8 100644 --- a/README.md +++ b/README.md @@ -103,12 +103,12 @@ Create a new database migration using the custom Meta command: $ php artisan meta:migration --table=existing_table_name ``` -Make sure the inside of the `up()` function matches the following: +Make sure the inside of the `up()` function contains the `formTable` function: ``` php public function up() { - Schema::table('DummyTable', function (Blueprint $table) { + Schema::table('existing_table_name', function (Blueprint $table) { Meta::formTable($table); }); }