id(); $table->unsignedBigInteger('student_log_id')->nullable(); $table->string('time_slot'); $table->string('day'); $table->string('subject_name'); $table->enum('type', ['Theory', 'Practical', 'Workshop', 'Break'])->default('Theory'); $table->integer('sort_order')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('timetables'); } };