Test Setup Failed
Branch master (738c6f)
by Philippe
11:40
created
database/migrations/2018_06_18_000000_create_activity_log_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create(config('activitylog.table_name'), function (Blueprint $table) {
11
+        Schema::create(config('activitylog.table_name'), function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->string('log_name')->nullable();
14 14
             $table->text('description');
Please login to merge, or discard this patch.
database/migrations/2018_05_04_150724_add_relations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('relations', function (Blueprint $table) {
11
+        Schema::create('relations', function(Blueprint $table) {
12 12
             $table->string("parent_type");
13 13
             $table->unsignedBigInteger("parent_id");
14 14
             $table->string("child_type");
Please login to merge, or discard this patch.
migrations/2019_08_23_163503_add_seo_keywords_on_page_translations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::table('page_translations', function (Blueprint $table) {
11
+        Schema::table('page_translations', function(Blueprint $table) {
12 12
             $table->string('seo_keywords')->after('seo_description')->nullable();
13 13
         });
14 14
     }
Please login to merge, or discard this patch.
database/migrations/2017_07_13_112256_create_pages_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('pages', function (Blueprint $table) {
11
+        Schema::create('pages', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->string('collection', 32)->index()->default('singles');
14 14
             $table->boolean('published')->default(false);
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
             $table->softDeletes();
23 23
         });
24 24
 
25
-        Schema::create('page_translations', function (Blueprint $table) {
25
+        Schema::create('page_translations', function(Blueprint $table) {
26 26
             $table->increments('id');
27 27
             $table->integer('page_id')->unsigned();
28 28
             $table->string('locale');
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_change_users_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('chief_users', function (Blueprint $table) {
11
+        Schema::create('chief_users', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->string('firstname');
14 14
             $table->string('lastname');
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
             $table->timestamps();
21 21
         });
22 22
 
23
-        Schema::create('chief_password_resets', function (Blueprint $table) {
23
+        Schema::create('chief_password_resets', function(Blueprint $table) {
24 24
             $table->string('email')->index();
25 25
             $table->string('token')->index();
26 26
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/migrations/2018_07_27_000000_create_modules_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('modules', function (Blueprint $table) {
11
+        Schema::create('modules', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->unsignedInteger('page_id')->nullable();
14 14
             $table->string('collection', 32)->index();
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
             $table->foreign('page_id')->references('id')->on('pages')->onDelete('cascade');
20 20
         });
21 21
 
22
-        Schema::create('module_translations', function (Blueprint $table) {
22
+        Schema::create('module_translations', function(Blueprint $table) {
23 23
             $table->increments('id');
24 24
             $table->integer('module_id')->unsigned();
25 25
             $table->string('locale');
Please login to merge, or discard this patch.
database/migrations/2019_08_22_163503_change_title_on_page_translations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::table('page_translations', function (Blueprint $table) {
11
+        Schema::table('page_translations', function(Blueprint $table) {
12 12
             $table->string('title')->nullable()->change();
13 13
         });
14 14
     }
Please login to merge, or discard this patch.
database/migrations/2018_05_30_205403_create_menu_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('menu_items', function (Blueprint $table) {
11
+        Schema::create('menu_items', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->unsignedInteger('parent_id')->nullable();
14 14
             $table->enum('type', ['collection', 'internal', 'custom', 'nolink'])->default('custom');
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
             $table->integer('order')->default(0);
20 20
         });
21 21
 
22
-        Schema::create('menu_item_translations', function (Blueprint $table) {
22
+        Schema::create('menu_item_translations', function(Blueprint $table) {
23 23
             $table->increments('id');
24 24
             $table->integer('menu_item_id')->unsigned();
25 25
             $table->string('locale');
Please login to merge, or discard this patch.
database/migrations/2018_07_28_000000_create_settings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('settings', function (Blueprint $table) {
11
+        Schema::create('settings', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->string('key')->index();
14 14
             $table->text('value');
Please login to merge, or discard this patch.