user photo add

This commit is contained in:
2024-12-25 16:32:23 +03:00
parent 2790105a7d
commit b5b7befd34
18 changed files with 92 additions and 38 deletions

View File

@ -20,6 +20,7 @@ return new class extends Migration
$table->string('username', 255)->nullable(false);
$table->string('email', 255);
$table->string('password_hash', 255);
$table->string('user_photo', 255)->nullable();
$table->integer('role')->default(1);
$table->string('access_token', 255)->nullable(true);
$table->dateTime('access_token_expires_at')->nullable(true);