id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->boolean('is_superuser')->default(false); $table->boolean('is_active')->default(true); $table->rememberToken(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };