id(); $table->integer('ms_group_id')->comment('FK ms group'); $table->string('name'); $table->string('email')->unique(); $table->string('username'); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestampsTz(); $table->softdeletesTz('deleted_at'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };