id(); $table->bigInteger("code")->unique()->nullable(); $table->string("name", 50)->nullable(); $table->date("birthdate")->nullable(); $table->enum("gender", ['male', 'female'])->nullable(); $table->json("nationality")->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('people'); } };