From f68a18c6b3dcbbcddb62c7427c9e530a8381966b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna-Sara=20S=C3=A9lea?= Date: Sun, 21 Sep 2025 08:43:11 +0200 Subject: [PATCH] Added comment to customer model. Comment in frontend --- .../2025_09_20_164540_add_comment_to_customer_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2025_09_20_164540_add_comment_to_customer_table.php b/database/migrations/2025_09_20_164540_add_comment_to_customer_table.php index ac73f79..584ec47 100644 --- a/database/migrations/2025_09_20_164540_add_comment_to_customer_table.php +++ b/database/migrations/2025_09_20_164540_add_comment_to_customer_table.php @@ -12,7 +12,7 @@ return new class extends Migration public function up(): void { Schema::table('customers', function (Blueprint $table) { - $table->mediumText('comment'); + $table->mediumText('comment')->nullable(); }); }