@@ -7,9 +7,9 @@ |
||
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(); |