id(); $table->string('name'); $table->string('matrix_username')->unique(); $table->string('phone')->unique(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };