ECO-171: removing duplicated index

This commit is contained in:
Charles Yao 2025-11-24 01:26:54 -06:00
parent b51bf33b1e
commit 0e355079fa
1 changed files with 2 additions and 2 deletions

View File

@ -132,9 +132,9 @@ class EndUserAuthenticationProvider(TypeBase):
# id of the tenant
tenant_id: Mapped[str] = mapped_column(StringUUID, nullable=False)
# id of the end user
end_user_id: Mapped[str] = mapped_column(StringUUID, nullable=False, index=True)
end_user_id: Mapped[str] = mapped_column(StringUUID, nullable=False)
# name of the tool provider
provider: Mapped[str] = mapped_column(LongText, nullable=False, index=True)
provider: Mapped[str] = mapped_column(LongText, nullable=False)
# encrypted credentials for the end user
encrypted_credentials: Mapped[str] = mapped_column(LongText, nullable=False, default="")
created_at: Mapped[datetime] = mapped_column(