Passed
Push — master ( 4a5649...f19773 )
by Julien
29:51
created
database/migrations/2016_95_04_171759_create_Team_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
 {
8 8
     public function up()
9 9
     {
10
-        Schema::create('team', function (Blueprint $table) {
10
+        Schema::create('team', function(Blueprint $table) {
11 11
             $table->increments('id');
12
-            $table->integer('short_id')->unsigned()->nullable() ;
12
+            $table->integer('short_id')->unsigned()->nullable();
13 13
             $table->string('name');
14 14
             $table->integer('championship_id')->unsigned()->index(); // A checar
15 15
             $table->string('picture')->nullable();
Please login to merge, or discard this patch.