Completed
Push — master ( 02c616...876046 )
by Joao
03:16
created
src/Migrations/2016_01_15_123600_create_blog_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     public function up()
14 14
     {
15 15
 
16
-        Schema::create('BlogCategory', function (Blueprint $table) {
16
+        Schema::create('BlogCategory', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 100);
19 19
             $table->string('description', 250);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             $table->creation();
24 24
         });
25 25
 
26
-        Schema::create('BlogPost', function (Blueprint $table) {
26
+        Schema::create('BlogPost', function(Blueprint $table) {
27 27
             $table->increments('id');
28 28
             $table->string('title', 100);
29 29
             $table->text('contents');
Please login to merge, or discard this patch.