36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
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('attendances', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('student_id')->constrained()->cascadeOnDelete();
|
|
$table->foreignId('class_session_id')->nullable()->constrained()->nullOnDelete();
|
|
$table->foreignId('course_schedule_id')->nullable()->constrained()->cascadeOnDelete();
|
|
$table->date('date')->nullable();
|
|
$table->timestamp('attended_at')->nullable();
|
|
$table->timestamps();
|
|
|
|
$table->unique(['student_id', 'class_session_id']);
|
|
$table->index(['student_id', 'course_schedule_id', 'date']);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('attendances');
|
|
}
|
|
};
|