id(); $table->string('title'); $table->foreignId('category_id')->nullable()->constrained()->nullOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('questions'); } };