@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_tmpfiles', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_tmpfiles', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('path'); |
19 | 19 | $table->timestamps(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_contents_libraries', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_contents_libraries', function(Blueprint $table) { |
|
17 | 17 | $table->integer('content_id')->unsigned(); |
18 | 18 | $table->integer('library_id')->unsigned(); |
19 | 19 | $table->string('dependency_type', 31); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_counters', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_counters', function(Blueprint $table) { |
|
17 | 17 | $table->string('type', 63); |
18 | 18 | $table->string('library_name', 127); |
19 | 19 | $table->string('library_version', 31); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_contents_user_data', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_contents_user_data', function(Blueprint $table) { |
|
17 | 17 | $table->integer('content_id')->unsigned(); |
18 | 18 | $table->integer('user_id')->unsigned(); |
19 | 19 | $table->integer('sub_content_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_libraries', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_libraries', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->timestamps(); |
19 | 19 | $table->string('name', 127); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_libraries_hub_cache', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_libraries_hub_cache', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('machine_name', 127); |
19 | 19 | $table->integer('major_version')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_contents_tags', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_contents_tags', function(Blueprint $table) { |
|
17 | 17 | $table->integer('content_id')->unsigned(); |
18 | 18 | $table->integer('tag_id')->unsigned(); |
19 | 19 | $table->primary(['content_id', 'tag_id']); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_libraries_cachedassets', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_libraries_cachedassets', function(Blueprint $table) { |
|
17 | 17 | $table->integer('library_id')->unsigned(); |
18 | 18 | $table->string('hash', 64); |
19 | 19 | $table->primary(['library_id', 'hash'], 'fk_primary'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('h5p_event_logs', function (Blueprint $table) { |
|
16 | + Schema::create('h5p_event_logs', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('type'); |
19 | 19 | $table->string('sub_type'); |