Update 2024_03_19_346785_add_routing_id_to_vendor

This commit is contained in:
Lars Kusch 2024-03-19 15:48:53 +01:00 committed by GitHub
parent ee147e0e4e
commit e02398e783
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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");
});
}
/**