Passed
Branch main (5c52b6)
by PRATIK
10:54
created
Category
database/migrations/2021_07_03_091126_create_projects_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('projects', function (Blueprint $table) {
16
+        Schema::create('projects', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->string('slug')->unique();
Please login to merge, or discard this patch.
database/migrations/2021_07_14_023743_create_videos_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('videos', function (Blueprint $table) {
16
+        Schema::create('videos', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name')->nullable();
19 19
             $table->string('thumbnail')->nullable();
Please login to merge, or discard this patch.
database/migrations/2021_07_08_030536_create_clients_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('clients', function (Blueprint $table) {
16
+        Schema::create('clients', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->string('image');
Please login to merge, or discard this patch.
database/migrations/2021_07_14_015142_create_pages_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('pages', function (Blueprint $table) {
16
+        Schema::create('pages', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('slug')->unique();
19 19
             $table->string('code')->unique();
Please login to merge, or discard this patch.
database/migrations/2021_07_08_031751_create_images_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('images', function (Blueprint $table) {
16
+        Schema::create('images', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->foreignId('gallery_id')->nullable()->constrained()->cascadeOnDelete();
19 19
             $table->string('image')->nullable();
Please login to merge, or discard this patch.
database/migrations/2021_07_08_031109_create_galleries_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('galleries', function (Blueprint $table) {
16
+        Schema::create('galleries', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('code')->unique();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2021_07_02_074536_create_facilities_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('facilities', function (Blueprint $table) {
16
+        Schema::create('facilities', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('code')->unique();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2021_07_01_124357_create_services_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('services', function (Blueprint $table) {
16
+        Schema::create('services', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('code')->unique();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2021_07_02_082847_create_counters_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('counters', function (Blueprint $table) {
16
+        Schema::create('counters', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->bigInteger('value');
Please login to merge, or discard this patch.