36 lines
934 B
PHP
Executable File
36 lines
934 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('biographies', function (Blueprint $table) {
|
|
$table->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');
|
|
}
|
|
};
|