Update 2024_04_02_181018_create_customers_table.php
This commit is contained in:
parent
1c29588514
commit
333a59ecd0
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue