fixed user registration issue
This commit is contained in:
parent
908d877cfb
commit
f5664ce84b
9 changed files with 203 additions and 30 deletions
|
|
@ -12,7 +12,7 @@ return new class extends Migration {
|
|||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('username');
|
||||
$table->string('username')->unique();
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password')->nullable();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue