mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
27 lines
865 B
Python
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,
|
|
)
|