id(); $table->foreignId('question_id')->constrained()->onDelete('cascade'); $table->text('option_text'); $table->boolean('is_correct')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('options'); } };