id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('full_name'); $table->string('pob', 75); $table->date('dob'); $table->string('contact_number', 15); $table->text('address'); $table->enum('gender', ['1', '2'])->comment('1:Laki-Laki 2:Perempuan'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('biographies'); } };