diff --git a/app/Models/User.php b/app/Models/User.php index def621f..715208a 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -17,9 +17,10 @@ class User extends Authenticatable * @var array */ protected $fillable = [ + 'last_name', 'name', + 'middle_name', 'email', - 'password', ]; /** diff --git a/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php index 05fb5d9..40977f2 100644 --- a/database/migrations/0001_01_01_000000_create_users_table.php +++ b/database/migrations/0001_01_01_000000_create_users_table.php @@ -12,17 +12,25 @@ return new class extends Migration public function up(): void { Schema::create('users', function (Blueprint $table) { - $table->id(); + $table->id()->type('uuid'); + $table->string('last_name'); $table->string('name'); + $table->string('middle_name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); - $table->string('password'); $table->rememberToken(); $table->timestamps(); }); + Schema::create('passwords', function (Blueprint $table) { + $table->id(); + $table->string('hash'); + $table->foreignId('user_id')->index(); + $table->timestamps(); + }); + Schema::create('password_reset_tokens', function (Blueprint $table) { - $table->string('email')->primary(); + $table->foreignId('user_id')->primary(); $table->string('token'); $table->timestamp('created_at')->nullable(); }); @@ -43,6 +51,7 @@ return new class extends Migration public function down(): void { Schema::dropIfExists('users'); + Schema::dropIfExists('passwords'); Schema::dropIfExists('password_reset_tokens'); Schema::dropIfExists('sessions'); }