mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-09 14:57:59 -05:00
12 lines
442 B
Python
12 lines
442 B
Python
from sqlalchemy import Column, Identity, Integer, String
|
|
from storage.base import Base
|
|
|
|
|
|
class StoredCustomSecrets(Base): # type: ignore
|
|
__tablename__ = 'custom_secrets'
|
|
id = Column(Integer, Identity(), primary_key=True)
|
|
keycloak_user_id = Column(String, nullable=True, index=True)
|
|
secret_name = Column(String, nullable=False)
|
|
secret_value = Column(String, nullable=False)
|
|
description = Column(String, nullable=True)
|