feat: add agent skills to review PR

This commit is contained in:
Abhishek Kumar 2026-05-19 16:54:35 +05:30
parent 8778bb453e
commit 23070e3352
10 changed files with 331 additions and 29 deletions

View file

@ -293,7 +293,7 @@ class IntegrationModel(Base):
id = Column(Integer, primary_key=True, index=True)
integration_id = Column(String, nullable=False, index=True) # Nango Connection ID
organisation_id = Column(Integer, ForeignKey("organizations.id"), nullable=False)
organization_id = Column(Integer, ForeignKey("organizations.id"), nullable=False)
provider = Column(String, nullable=False)
created_by = Column(Integer, ForeignKey("users.id"))
is_active = Column(Boolean, default=True, nullable=False)