Unverified Commit baf536eb authored by Yeuoly's avatar Yeuoly

fix: linter

parent 52006683
...@@ -6,7 +6,6 @@ Create Date: 2024-03-14 04:54:56.679506 ...@@ -6,7 +6,6 @@ Create Date: 2024-03-14 04:54:56.679506
""" """
from alembic import op from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql from sqlalchemy.dialects import postgresql
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
......
...@@ -218,7 +218,7 @@ class ToolFile(db.Model): ...@@ -218,7 +218,7 @@ class ToolFile(db.Model):
# tenant id # tenant id
tenant_id = db.Column(UUID, nullable=False) tenant_id = db.Column(UUID, nullable=False)
# conversation id # conversation id
conversation_id = db.Column(UUID, nullable=False) conversation_id = db.Column(UUID, nullable=True)
# file key # file key
file_key = db.Column(db.String(255), nullable=False) file_key = db.Column(db.String(255), nullable=False)
# mime type # mime type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment