Update 2024_04_02_181018_create_customers_table.php

This commit is contained in:
Bozhidar Slaveykov 2024-04-04 15:20:28 +03:00
parent 1c29588514
commit 333a59ecd0

View file

@ -15,7 +15,8 @@ return new class extends Migration
$table->id();
$table->string('name')->nullable();
$table->string('email')->nullable();
$table->string('email')->nullable()->unique();
$table->string('username')->nullable()->unique();
$table->string('phone')->nullable();
$table->string('address')->nullable();
$table->string('city')->nullable();