Passed
Pull Request — main (#35)
by PRATIK
16:09 queued 12:17
created
database/migrations/2023_07_17_095004_create_abouts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'abouts', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'abouts', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('title');
17 17
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_092509_create_teams_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'teams', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'teams', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2023_05_15_075530_create_tags_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'tags', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'tags', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('slug');
Please login to merge, or discard this patch.
database/migrations/2023_05_09_101723_create_counters_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'counters', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'counters', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('icon');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_075952_create_downloads_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'downloads', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'downloads', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->integer('group')->default(1);
Please login to merge, or discard this patch.
database/migrations/2023_05_24_081102_create_processes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'processes', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'processes', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('slug');
17 17
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_055608_create_notices_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'notices', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'notices', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('slug');
17 17
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_11_113821_create_products_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'products', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'products', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('sku')->unique();
17 17
             $table->string('name')->unique();
Please login to merge, or discard this patch.
database/migrations/2023_05_12_090349_create_attribute_product_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up(): void
13 13
     {
14
-        Schema::create(config('website.table_prefix', 'website').'_'.'attribute_product', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'attribute_product', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->unsignedBigInteger('attribute_id');
17 17
             $table->unsignedBigInteger('product_id');
Please login to merge, or discard this patch.