- Implemented LecturerEdit and LecturerIndex components for managing lecturers. - Created StudentCreate and StudentEdit components for adding and editing students. - Developed StudentIndex component for listing students with search and pagination. - Added department and user types for better type safety. - Updated routes for lecturers and students, including reset password functionality. - Removed AppSidebar from dashboard for a cleaner layout.
30 lines
999 B
PHP
30 lines
999 B
PHP
<?php
|
|
|
|
use App\Enums\StudentStatus;
|
|
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('students', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
|
|
$table->string('student_number', 10)->unique();
|
|
$table->foreignId('department_id')->constrained()->cascadeOnDelete();
|
|
$table->integer('enrollment_year');
|
|
$table->foreignId('academic_advisor_id')->nullable()->constrained('lecturers')->nullOnDelete();
|
|
$table->enum('status', array_values(StudentStatus::cases()))->nullable()->default(StudentStatus::Active);
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('students');
|
|
}
|
|
};
|