web-kursus2/database/migrations/2023_04_09_112337_create_enrollments_table.php
2025-10-30 14:17:23 +07:00

35 lines
889 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->id();
$table->unsignedBigInteger('user_id')->nullable();
$table->unsignedBigInteger('course_id')->nullable();
$table->string('enrollment_type')->nullable();//subscription or lifetime
$table->timestamp('expiry_date')->nullable();
$table->timestamps();
$table->index('user_id');
$table->index('course_id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('enrollments');
}
};