fix: migrations and model so they fit the schema

This commit is contained in:
b1ek 2024-08-29 18:55:49 +10:00
parent b31fc46a1f
commit 4fe830228e
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 14 additions and 4 deletions

View File

@ -17,9 +17,10 @@ class User extends Authenticatable
* @var array<int, string>
*/
protected $fillable = [
'last_name',
'name',
'middle_name',
'email',
'password',
];
/**

View File

@ -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');
}