feat: more workers
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user