mirror of
https://github.com/langgenius/dify.git
synced 2026-01-10 16:34:15 +00:00
ECO-171: removing duplicated index
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user