From ada84f049421412653436c956943e4d2ccbbf57f Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Tue, 19 Mar 2024 15:37:19 +0100 Subject: [PATCH] Create 2024_03_19_346785_add_routing_id_to_vendor --- ...2024_03_19_346785_add_routing_id_to_vendor | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2024_03_19_346785_add_routing_id_to_vendor 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 new file mode 100644 index 000000000000..3f34b6305dba --- /dev/null +++ b/database/migrations/2024_03_19_346785_add_routing_id_to_vendor @@ -0,0 +1,30 @@ +string('routing_id')->default(null)->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + + } +};