id(); $table->unsignedBigInteger('gallery_id'); $table->unsignedBigInteger('user_id'); $table->text('title')->nullable(); $table->unsignedInteger('sort')->default(0); $table->timestamps(); $table->foreign('user_id') ->references('id')->on('users'); $table->foreign('gallery_id') ->references('id')->on('galleries'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('images'); } };