From 31f464dd89e10ddc1e1d5d215c4db6db55fcada8 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Mon, 14 Sep 2020 16:56:14 +0800 Subject: [PATCH] removed email verification from blade temp until fixed --- .../2020_08_04_042683_create_company_connections_table.php | 1 - 1 file changed, 1 deletion(-) diff --git a/database/migrations/2020_08_04_042683_create_company_connections_table.php b/database/migrations/2020_08_04_042683_create_company_connections_table.php index b9511463..6c9e3382 100644 --- a/database/migrations/2020_08_04_042683_create_company_connections_table.php +++ b/database/migrations/2020_08_04_042683_create_company_connections_table.php @@ -19,7 +19,6 @@ class CreateCompanyConnectionsTable extends Migration $table->id(); $table->foreignId('module_one'); $table->foreignId('module_two'); - $table->text('marking'); $table->integer('status')->default(RelationStatus::PENDING); $table->foreignId('instigator')->comment('entity that is responsible for current status'); $table->timestamps();