Compare commits

..

No commits in common. "4fe830228e62188b6148a351fc0f09ff0ea719af" and "7ee2254bb5c2de66db53d82151f309a27ef62a3a" have entirely different histories.

3 changed files with 5 additions and 16 deletions

View File

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

View File

@ -11,8 +11,7 @@ return Application::configure(basePath: dirname(__DIR__))
health: '/up', health: '/up',
) )
->withMiddleware(function (Middleware $middleware) { ->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) { ->withExceptions(function (Exceptions $exceptions) {
// //

View File

@ -12,25 +12,17 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::create('users', function (Blueprint $table) { Schema::create('users', function (Blueprint $table) {
$table->id()->type('uuid'); $table->id();
$table->string('last_name');
$table->string('name'); $table->string('name');
$table->string('middle_name');
$table->string('email')->unique(); $table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable(); $table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken(); $table->rememberToken();
$table->timestamps(); $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) { Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->foreignId('user_id')->primary(); $table->string('email')->primary();
$table->string('token'); $table->string('token');
$table->timestamp('created_at')->nullable(); $table->timestamp('created_at')->nullable();
}); });
@ -51,7 +43,6 @@ return new class extends Migration
public function down(): void public function down(): void
{ {
Schema::dropIfExists('users'); Schema::dropIfExists('users');
Schema::dropIfExists('passwords');
Schema::dropIfExists('password_reset_tokens'); Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions'); Schema::dropIfExists('sessions');
} }