Add SoftDeletes feature to User model.

This commit is contained in:
2023-06-28 23:05:31 +06:00
parent fcf7cfa584
commit cf449eb8e2
2 changed files with 3 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ return new class extends Migration
$table->string('password');
$table->rememberToken();
$table->timestamps();
$table->softDeletes();
});
}