|
|
@ -14,10 +14,8 @@ return new class extends Migration
|
|
|
|
Schema::create('users', function (Blueprint $table) {
|
|
|
|
Schema::create('users', function (Blueprint $table) {
|
|
|
|
$table->id();
|
|
|
|
$table->id();
|
|
|
|
$table->string('name');
|
|
|
|
$table->string('name');
|
|
|
|
$table->string('email')->unique();
|
|
|
|
$table->string('matrix_username')->unique();
|
|
|
|
$table->timestamp('email_verified_at')->nullable();
|
|
|
|
$table->string('phone')->unique();
|
|
|
|
$table->string('password');
|
|
|
|
|
|
|
|
$table->rememberToken();
|
|
|
|
|
|
|
|
$table->timestamps();
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|