diff --git a/database/migrations/2024_03_19_346785_add_routing_id_to_vendor b/database/migrations/2024_03_19_346785_add_routing_id_to_vendor index 3f34b6305dba..964571a3c5fb 100644 --- a/database/migrations/2024_03_19_346785_add_routing_id_to_vendor +++ b/database/migrations/2024_03_19_346785_add_routing_id_to_vendor @@ -16,6 +16,9 @@ return new class extends Migration { Schema::table('vendors', function (Blueprint $table) { $table->string('routing_id')->default(null)->nullable(); }); + Schema::table('companies', function (Blueprint $table) { + $table->string('e_quote_type')->default("OrderX_Comfort"); + }); } /**