1
0
forked from poc/pds

Added deleted_at column using softDeletes()

This commit is contained in:
dhanabalan
2025-04-20 17:03:51 +05:30
parent 0e2a6cfb2d
commit eb72a0f564

View File

@@ -19,6 +19,7 @@ return new class extends Migration
$table->string('password'); $table->string('password');
$table->rememberToken(); $table->rememberToken();
$table->timestamps(); $table->timestamps();
$table->softDeletes();
}); });
Schema::create('password_reset_tokens', function (Blueprint $table) { Schema::create('password_reset_tokens', function (Blueprint $table) {