Added comment to customer model. Comment in frontend

This commit is contained in:
Anna-Sara Sélea 2025-09-21 08:43:11 +02:00
parent b4ff1ee8fa
commit f68a18c6b3

View file

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