Compare commits

..

2 Commits

Author SHA1 Message Date
b1ek 4fe830228e
fix: migrations and model so they fit the schema 2024-08-29 18:55:49 +10:00
b1ek b31fc46a1f
fix: ignore csrf 2024-08-29 18:55:18 +10:00
3 changed files with 16 additions and 5 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

@ -11,7 +11,8 @@ return Application::configure(basePath: dirname(__DIR__))
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
//
// https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Axillary_Crutches.jpg/90px-Axillary_Crutches.jpg
$middleware->validateCsrfTokens([ '*' ]);
})
->withExceptions(function (Exceptions $exceptions) {
//

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