id(); $table->foreignId('course_class_id')->constrained()->cascadeOnDelete(); $table->string('day_of_week', 15)->nullable(); $table->time('start_time')->nullable(); $table->time('end_time')->nullable(); $table->string('room', 20)->nullable(); $table->string('online_link', 255)->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('schedules'); } };