mastercut/database/migrations/2024_11_18_172111_create_biographies_table.php

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');
}
};