id(); $table->string("first_name"); $table->string("last_name"); $table->string("email")->unique(); $table->string("avatar")->nullable(); $table->string("employment_form"); $table->date("employment_date"); $table->rememberToken(); $table->softDeletes(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists("users"); } };