Files

26 lines
717 B
PHP
Raw Permalink Normal View History

2026-05-30 22:15:16 +07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('exams', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('old_id')->nullable()->index(); // Kolom penaut data lama
$table->string('title');
$table->string('duration')->nullable(); // Dalam menit
$table->string('passing_percentage')->nullable(); // KKM Kelulusan
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('exams');
}
};