Completed
Push — main ( 3e1c9f...1d9eb2 )
by PRATIK
19s queued 16s
created
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('notices', function (Blueprint $table) {
14
+        Schema::create('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_074536_create_posts_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('posts', function (Blueprint $table) {
14
+        Schema::create('posts', 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_11_053828_create_payments_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('payments', function (Blueprint $table) {
14
+        Schema::create('payments', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete();
17 17
             $table->integer('type')->default(1);
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('attributes', function (Blueprint $table) {
14
+        Schema::create('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_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('facilities', function (Blueprint $table) {
14
+        Schema::create('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_10_084048_create_testimonials_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('testimonials', function (Blueprint $table) {
14
+        Schema::create('testimonials', function(Blueprint $table) {
15 15
             $table->id();
16 16
             $table->string('name');
17 17
             $table->string('email')->nullable();
Please login to merge, or discard this patch.
database/migrations/2023_05_10_110230_create_packages_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('packages', function (Blueprint $table) {
14
+        Schema::create('packages', 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('products', function (Blueprint $table) {
14
+        Schema::create('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('attribute_product', function (Blueprint $table) {
14
+        Schema::create('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.