id(); $table->string('event_id', 64)->unique()->index(); $table->string('parent_event_id', 64)->index()->nullable(); $table->string('pubkey', 64)->index(); $table->json('json'); $table->string('type'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('events'); } };