Completed
Push — main ( 1bc180...d9fee5 )
by PRATIK
18s queued 16s
created
database/migrations/2023_05_10_041835_create_galleries_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').'_'.'galleries', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'galleries', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('slug')->unique();
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_11_093045_create_careers_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(config('website.table_prefix', 'website').'_'.'careers', function (Blueprint $table) {
16
+        Schema::create(config('website.table_prefix', 'website').'_'.'careers', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('title');
19 19
             $table->string('slug')->unique();
Please login to merge, or discard this patch.
database/migrations/2023_05_10_075236_create_popups_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').'_'.'popups', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'popups', 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_09_100101_create_faqs_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').'_'.'faqs', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'faqs', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->text('question');
17 17
             $table->longText('answer');
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.
database/migrations/2023_05_25_045247_create_software_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').'_'.'software', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'software', 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_082941_create_pages_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').'_'.'pages', function (Blueprint $table) {
14
+        Schema::create(config('website.table_prefix', 'website').'_'.'pages', 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.