Completed
Push — master ( d09bf0...b3c1a4 )
by Abdelouahab
03:48
created
migrations/2017_05_10_015415_create_h5p_libraries_libraries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('h5p_libraries_libraries', function (Blueprint $table) {
16
+        Schema::create('h5p_libraries_libraries', function(Blueprint $table) {
17 17
             $table->bigInteger('library_id')->unsigned();
18 18
             $table->bigInteger('required_library_id')->unsigned();
19 19
             $table->string('dependency_type', 31);
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_tmpfiles_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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->bigIncrements('id');
18 18
             $table->string('path');
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_contents_user_data_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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->bigInteger('content_id')->unsigned();
18 18
             $table->bigInteger('user_id')->unsigned();
19 19
             $table->bigInteger('sub_content_id')->unsigned();
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_results_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('h5p_results', function (Blueprint $table) {
16
+        Schema::create('h5p_results', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->bigInteger('content_id')->unsigned();
19 19
             $table->bigInteger('user_id')->unsigned();
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_contents_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('h5p_contents', function (Blueprint $table) {
16
+        Schema::create('h5p_contents', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->timestamps();
19 19
             $table->bigInteger('user_id')->unsigned();
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_libraries_languages_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('h5p_libraries_languages', function (Blueprint $table) {
16
+        Schema::create('h5p_libraries_languages', function(Blueprint $table) {
17 17
             $table->bigInteger('library_id')->unsigned();
18 18
             $table->string('language_code', 31);
19 19
             $table->text('translation', 65535);
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_contents_libraries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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->bigInteger('content_id')->unsigned();
18 18
             $table->bigInteger('library_id')->unsigned();
19 19
             $table->string('dependency_type', 31);
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_contents_tags_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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->bigInteger('content_id')->unsigned();
18 18
             $table->bigInteger('tag_id')->unsigned();
19 19
             $table->primary(['content_id', 'tag_id']);
Please login to merge, or discard this patch.
migrations/2017_05_10_015415_create_h5p_libraries_hub_cache_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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->bigIncrements('id');
18 18
             $table->string('machine_name', 127);
19 19
             $table->bigInteger('major_version')->unsigned();
Please login to merge, or discard this patch.