Test Failed
Push — master ( b886ba...73445a )
by Ricardo
03:49
created
database/migrations/2013_07_25_145958_create_translations_table.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
         });
22 22
 
23 23
         Schema::create('languages', function (Blueprint $table) {
24
-		    $table->engine = 'InnoDB';
24
+            $table->engine = 'InnoDB';
25 25
             $table->string('code')->unique();
26 26
             $table->primary('code');
27 27
 
28
-			$table->integer('position')->nullable();
28
+            $table->integer('position')->nullable();
29 29
             $table->string('name', 50);
30 30
         });
31 31
         
Please login to merge, or discard this patch.