Adds the user name as a separate field

This commit is contained in:
2026-03-19 11:57:27 +01:00
parent a046c017fa
commit 124c707634
9 changed files with 233 additions and 21 deletions

View File

@@ -17,6 +17,7 @@ public function up(): void
$table->id();
$table->foreignId('role_id')->default(1)->constrained();
$table->string('name');
$table->string('username')->unique();
$table->string('email')->unique();
$table->string('azure_id')->nullable()->unique();
$table->string('photo')->nullable();