id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->unsignedBigInteger("updated_by")->nullable(); $table->unsignedBigInteger("created_by")->nullable(); $table->unsignedBigInteger("deleted_by")->nullable(); $table->softDeletes(); $table->rememberToken(); $table->timestamps(); } ); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };