id(); $table->string('title'); $table->text('description')->nullable(); $table->enum('type', ['activity', 'finance', 'general']); $table->unsignedBigInteger('related_id')->nullable(); $table->enum('status', ['open', 'closed'])->default('open'); $table->timestamp('deadline')->nullable(); $table->foreignId('created_by')->constrained('users'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('votes'); } };