id(); $table->morphs('rateable'); $table->morphs('rater'); $table->tinyInteger('rate'); $table->unsignedBigInteger('evaluation_id'); $table->timestamps(); $table->foreign('evaluation_id') ->references('id')->on('evaluations'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('rates'); } };