diff --git a/readme.md b/readme.md index dad9b7b..4a6d853 100644 --- a/readme.md +++ b/readme.md @@ -254,8 +254,7 @@ class CreatePostTagPivotTable extends Migration { */ public function up() { - Schema::create('post_tag', function(Blueprint $table) - { + Schema::create('post_tag', function(Blueprint $table) { $table->integer('post_id')->unsigned()->index(); $table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade'); $table->integer('tag_id')->unsigned()->index();