fixed user registration issue
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Edward Tirado Jr 2025-12-14 13:23:46 -06:00
parent 908d877cfb
commit f5664ce84b
9 changed files with 203 additions and 30 deletions

View file

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