Passed
Push — dependabot/npm_and_yarn/tunnel... ( bf55bc...2f2e82 )
by Philippe
70:41 queued 28:18
created
database/migrations/2018_08_22_163503_create_pagesets_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('pagesets', function (Blueprint $table) {
11
+        Schema::create('pagesets', function(Blueprint $table) {
12 12
             $table->increments('id');
13 13
             $table->string('key')->unique();
14 14
             $table->string('action');
Please login to merge, or discard this patch.
database/migrations/2018_10_11_000000_change_morph_key.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,19 +8,19 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::table('pages', function (Blueprint $table) {
11
+        Schema::table('pages', function(Blueprint $table) {
12 12
             $table->renameColumn('collection', 'morph_key');
13 13
         });
14 14
 
15
-        Schema::table('modules', function (Blueprint $table) {
15
+        Schema::table('modules', function(Blueprint $table) {
16 16
             $table->renameColumn('collection', 'morph_key');
17 17
         });
18 18
 
19
-        Schema::table('pages', function (Blueprint $table) {
19
+        Schema::table('pages', function(Blueprint $table) {
20 20
             $table->string('morph_key', 255)->change();
21 21
         });
22 22
 
23
-        Schema::table('modules', function (Blueprint $table) {
23
+        Schema::table('modules', function(Blueprint $table) {
24 24
             $table->string('morph_key', 255)->change();
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
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.