feat: more workers

This commit is contained in:
2026-05-14 23:47:20 +03:00
parent 366bdc9515
commit 50bfaa9264
5 changed files with 7 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ class UserModel(Base, UlidPrimaryKeyMixin, AuditTimestampsMixin, SoftDeleteMixin
inn: Mapped[str | None] = mapped_column(String(12), nullable=True)
erc20: Mapped[str | None] = mapped_column(String(255), nullable=True)
avatar_link: Mapped[str | None] = mapped_column(String(2048), nullable=True)
kyc_verified: Mapped[bool] = mapped_column(Boolean, nullable=False, server_default='false', default=False)
kyc_verified_at: Mapped[DateTime | None] = mapped_column(DateTime(timezone=True), nullable=True)

View File

@@ -29,6 +29,7 @@ class UserRepository(IUserRepository):
passport_data=model.passport_data,
inn=model.inn,
erc20=model.erc20,
avatar_link=model.avatar_link,
kyc_verified=model.kyc_verified,
is_deleted=model.is_deleted,
created_at=model.created_at,