siakad-itm/database/migrations/2026_08_03_000007_create_students_table.php
Yoga Pangestu 2885de2c20 feat: add lecturer and student management pages with CRUD functionality
- 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.
2026-08-21 14:14:01 +07:00

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');
}
};