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