id(); $table->foreignId('city_id')->constrained()->cascadeOnDelete(); $table->string('name'); $table->string('slug')->nullable()->index(); $table->text('description')->nullable(); $table->string('website')->nullable(); $table->string('nostr_pubkey', 64)->nullable(); $table->json('github_data')->nullable(); $table->json('simplified_geojson')->nullable(); $table->unsignedBigInteger('created_by')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('meetups'); } };