id(); $table->string('nama'); $table->enum('jenis_kelamin', ['L', 'P'])->default('L'); $table->string('no_telepon')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('karyawan'); } };