string('username', 100)->primary(); $table->string('password', 100)->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('admin'); } };