Correcting replication and no_files flag
All checks were successful
Build xmlrpcserver image / Build (push) Successful in 56s

This commit is contained in:
Ivan Vazhenin
2024-04-08 20:30:34 +03:00
parent 219b597042
commit cdaccb911b
2 changed files with 61 additions and 16 deletions

1
db.py
View File

@@ -77,6 +77,7 @@ class Profile(Base):
scheme: Mapped[str]
branch: Mapped[str] = mapped_column(String, nullable=True)
json: Mapped[str] = mapped_column(String, nullable=True)
no_files: Mapped[bool]
user: Mapped['User'] = relationship(back_populates='profiles')