mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 00:31:49 +08:00
[autofix.ci] apply automated fixes
This commit is contained in:
@ -55,9 +55,7 @@ class UserRole(SQLModel, table=True): # type: ignore[call-arg]
|
||||
|
||||
class ResourcePermission(SQLModel, table=True): # type: ignore[call-arg]
|
||||
__tablename__ = "resource_permission"
|
||||
__table_args__ = (
|
||||
Index("ix_resource_permission_user_resource", "user_id", "resource_type", "resource_id"),
|
||||
)
|
||||
__table_args__ = (Index("ix_resource_permission_user_resource", "user_id", "resource_type", "resource_id"),)
|
||||
|
||||
id: UUIDstr = Field(default_factory=uuid4, primary_key=True)
|
||||
user_id: UUIDstr = Field(
|
||||
|
||||
Reference in New Issue
Block a user