|
|
@@ -14,8 +14,9 @@ return new class extends Migration {
|
|
|
Schema::create('clients', function (Blueprint $table) {
|
|
|
$table->id();
|
|
|
$table->string('name');
|
|
|
- $table->string('phone');
|
|
|
- $table->string('email');
|
|
|
+ $table->string('phone')->nullable();
|
|
|
+ $table->string('email')->nullable();
|
|
|
+ $table->text('comment')->nullable();
|
|
|
$table->softDeletes();
|
|
|
$table->timestamps();
|
|
|
});
|