add organization domain (#220)

This commit is contained in:
Shuchang Zheng
2024-04-23 15:02:56 -07:00
committed by GitHub
parent 550ad65c5d
commit 7f5b77da3a
5 changed files with 43 additions and 0 deletions

View File

@@ -78,6 +78,7 @@ class OrganizationModel(Base):
webhook_callback_url = Column(UnicodeText)
max_steps_per_run = Column(Integer, nullable=True)
max_retries_per_step = Column(Integer, nullable=True)
domain = Column(String, nullable=True, index=True)
created_at = Column(DateTime, default=datetime.datetime.utcnow, nullable=False)
modified_at = Column(DateTime, default=datetime.datetime.utcnow, onupdate=datetime.datetime, nullable=False)