@@ -9,7 +9,7 @@ |
||
9 | 9 | { |
10 | 10 | public function up() |
11 | 11 | { |
12 | - Schema::create('tournament', function (Blueprint $table) { |
|
12 | + Schema::create('tournament', function(Blueprint $table) { |
|
13 | 13 | $table->increments('id'); |
14 | 14 | //TODO Added ->nullable() to solve FK issue with Sqlite :( |
15 | 15 | $table->bigInteger('user_id')->unsigned()->nullable()->index(); |