Update User class.

Added the needed fields and removed unused fields.
This commit is contained in:
2023-06-15 17:43:59 +03:00
parent 61a374dfc7
commit ea363b956e
2 changed files with 4 additions and 26 deletions
@@ -14,10 +14,8 @@ return new class extends Migration
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->string('matrix_username')->unique();
$table->string('phone')->unique();
$table->timestamps();
});
}