Update migrations

This commit is contained in:
joeplikestocode
2026-02-16 00:09:07 +01:00
parent cd8365e17b
commit c16cabc00e
10 changed files with 57 additions and 41 deletions

View File

@@ -16,7 +16,7 @@ return new class extends Migration
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->
$table->enum('role', ['admin', 'member'])->default('admin');
$table->string('password');
$table->rememberToken();
$table->timestamps();