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(); }); }