From d329d6104e5c500983b79ee642cc2b7949e90a14 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 6 Jun 2025 15:55:54 +0100 Subject: [PATCH] Make supplier_id nullable Signed-off-by: snipe --- ...06_06_155058_make_supplier_id_nullable.php | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 database/migrations/2025_06_06_155058_make_supplier_id_nullable.php diff --git a/database/migrations/2025_06_06_155058_make_supplier_id_nullable.php b/database/migrations/2025_06_06_155058_make_supplier_id_nullable.php new file mode 100644 index 0000000000..f71eeb8d96 --- /dev/null +++ b/database/migrations/2025_06_06_155058_make_supplier_id_nullable.php @@ -0,0 +1,27 @@ +integer('supplier_id')->nullable()->default(null)->change(); + }); + + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // + } +};