id(); $table->foreignId('image_id')->constrained()->onDelete('cascade'); $table->string('relation_type'); $table->unsignedBigInteger('relation_id'); $table->integer('position')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::drop('associate_images'); } }