improve: upgrade node to 20, upgrade react-query to v4

This commit is contained in:
h z
2025-04-27 00:36:42 +01:00
parent 84494827ad
commit 85d8124a0c
7 changed files with 36 additions and 20 deletions

View File

@@ -4,7 +4,7 @@ from db.models import Base
class PathSetting(Base):
__tablename__ = 'path_settings'
__tablename__ = 'path_setting'
id = Column(Integer, primary_key=True, autoincrement=True)
webhook_setting_id = Column(Integer, ForeignKey('webhook_setting.id'), nullable=True)
template_setting_id = Column(Integer, ForeignKey('path_template.id'), nullable=True)