add user register/login form and authentication

This commit is contained in:
TimmensOne
2023-03-27 15:29:49 +02:00
parent 13f933e0b5
commit 4752b23f35
10 changed files with 216 additions and 52 deletions

View File

@@ -15,7 +15,7 @@ return new class extends Migration
$table->string('rz_username')->unique();
$table->string('full_name');
$table->string('organisation_unit');
$table->boolean('has_admin_privileges');
$table->boolean('has_admin_privileges')->default(false);
$table->string('hashed_password');
});
}