id(); $table->unsignedBigInteger('comic_id'); $table->unsignedBigInteger('chapter_id'); $table->integer('order'); $table->text('url')->unique(); $table->json('metadata'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('images'); } };