Passed
Push — main ( 93d181...6c645c )
by PRATIK
15:49
created
database/migrations/2023_05_09_094044_create_features_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') . '_' . 'features', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'features', 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_07_17_113916_create_histories_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') . '_' . 'histories', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'histories', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('title')->nullable();
17 17
             $table->text('description')->nullable();
Please login to merge, or discard this patch.
database/migrations/2023_05_09_092656_create_facilities_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') . '_' . 'facilities', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'facilities', 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_104920_create_attributes_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') . '_' . 'attributes', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'attributes', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('code')->unique();
17 17
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2023_05_09_084637_create_services_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') . '_' . 'services', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'services', 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_08_094045_create_categories_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') . '_' . 'categories', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'categories', 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_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_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_07_12_091323_create_sliders_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') . '_' . 'sliders', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'sliders', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('title')->nullable();
17 17
             $table->text('text')->nullable();
Please login to merge, or discard this patch.