id(); $table->foreignId('organization_id')->constrained()->onDelete('cascade'); $table->string('name'); $table->text('description')->nullable(); $table->boolean('is_active')->default(true); $table->timestamps(); $table->index('organization_id'); $table->index('is_active'); }); } public function down(): void { Schema::dropIfExists('groups'); } };