id(); $table->foreignId('estimation_round_id')->constrained('estimation_rounds')->onDelete('cascade'); $table->string('name'); $table->integer('score'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('votes'); } };