mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 20:17:29 +08:00
ECO-171: removing duplicated index
This commit is contained in:
parent
b51bf33b1e
commit
0e355079fa
@ -132,9 +132,9 @@ class EndUserAuthenticationProvider(TypeBase):
|
|||||||
# id of the tenant
|
# id of the tenant
|
||||||
tenant_id: Mapped[str] = mapped_column(StringUUID, nullable=False)
|
tenant_id: Mapped[str] = mapped_column(StringUUID, nullable=False)
|
||||||
# id of the end user
|
# 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
|
# 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 for the end user
|
||||||
encrypted_credentials: Mapped[str] = mapped_column(LongText, nullable=False, default="")
|
encrypted_credentials: Mapped[str] = mapped_column(LongText, nullable=False, default="")
|
||||||
created_at: Mapped[datetime] = mapped_column(
|
created_at: Mapped[datetime] = mapped_column(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user