mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
32 lines
863 B
PHP
32 lines
863 B
PHP
<?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('enrollments', function (Blueprint $table) {
|
|
$table->uuid('id')->primary();
|
|
$table->foreignUuid('user_id')->constrained()->cascadeOnDelete();
|
|
$table->foreignUuid('course_id')->constrained()->cascadeOnDelete();
|
|
$table->timestamp('enrolled_at')->nullable();
|
|
$table->enum('status', ['active', 'completed', 'dropped'])->default('active');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('enrollments');
|
|
}
|
|
};
|