id(); $table->foreignId('entry_id')->constrained()->cascadeOnDelete(); $table->string('title', 255); $table->integer('rating'); $table->text('description'); $table->unsignedBigInteger( 'user_id' ); // xf_user_id $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('entry_reviews'); } };