id(); $table->unsignedBigInteger('comic_id')->index(); $table->uuid('chapter_uuid')->unique(); $table->string('name'); $table->integer('order'); $table->date('upstream_created_at'); $table->json('metadata'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('chapters'); } };