id(); $table->string('pathword')->unique(); $table->uuid('uuid')->nullable(); $table->string('name')->index(); $table->json('alias')->nullable(); $table->text('description')->nullable(); $table->string('cover')->nullable(); $table->date('upstream_updated_at'); $table->json('metadata')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('comics'); } };