Initial commit - DesignerCEP Project with Caddy deployment

This commit is contained in:
zuowei1216
2025-12-19 21:27:17 +08:00
commit 8ea58fe480
170 changed files with 47469 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from sqlalchemy import Column, Integer, String, Text
from sqlalchemy.orm import relationship
from app.db import Base
class PluginGroup(Base):
__tablename__ = "plugin_groups"
id = Column(Integer, primary_key=True, index=True)
name = Column(String(64), unique=True, index=True, nullable=False)
current_version_file = Column(String(255), nullable=True) # Name of the zip file
comment = Column(Text, nullable=True)
users = relationship("User", back_populates="group")