refactor(frontend): Relocate Pains/Gains to Settings, add CRM view to Inspector

This commit is contained in:
Moltbot-Jarvis
2026-02-18 11:33:39 +00:00
parent 7f469a0ddf
commit 8431b9bf7d
3 changed files with 92 additions and 1742 deletions

View File

@@ -140,6 +140,9 @@ class Industry(Base):
primary_category_id = Column(Integer, ForeignKey("robotics_categories.id"), nullable=True)
secondary_category_id = Column(Integer, ForeignKey("robotics_categories.id"), nullable=True)
primary_category = relationship("RoboticsCategory", foreign_keys=[primary_category_id])
secondary_category = relationship("RoboticsCategory", foreign_keys=[secondary_category_id])
created_at = Column(DateTime, default=datetime.utcnow)