Files
OpenHands/enterprise/storage/github_app_installation.py
2026-04-22 12:53:53 -04:00

27 lines
865 B
Python

from datetime import datetime
from sqlalchemy import DateTime, String, text
from sqlalchemy.orm import Mapped, mapped_column
from storage.base import Base
class GithubAppInstallation(Base):
"""
Represents a Github App Installation with associated token.
"""
__tablename__ = 'github_app_installations'
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
installation_id: Mapped[str] = mapped_column(String, nullable=False)
encrypted_token: Mapped[str] = mapped_column(String, nullable=False)
created_at: Mapped[datetime] = mapped_column(
DateTime, server_default=text('CURRENT_TIMESTAMP'), nullable=False
)
updated_at: Mapped[datetime] = mapped_column(
DateTime,
server_default=text('CURRENT_TIMESTAMP'),
onupdate=text('CURRENT_TIMESTAMP'),
nullable=False,
)