id(); $table->string('name', 100); $table->string('email', 120)->unique(); $table->string('password'); $table->timestamps(); $table->charset = 'utf8mb4'; $table->collation = 'utf8mb4_0900_ai_ci'; }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };