mirror of https://github.com/langgenius/dify.git
chore: set is_multimodal db define default = false (#29362)
This commit is contained in:
parent
1b9165624f
commit
4a88c8fd19
|
|
@ -78,7 +78,7 @@ class Dataset(Base):
|
|||
pipeline_id = mapped_column(StringUUID, nullable=True)
|
||||
chunk_structure = mapped_column(sa.String(255), nullable=True)
|
||||
enable_api = mapped_column(sa.Boolean, nullable=False, server_default=sa.text("true"))
|
||||
is_multimodal = mapped_column(sa.Boolean, nullable=False, server_default=db.text("false"))
|
||||
is_multimodal = mapped_column(sa.Boolean, default=False, nullable=False, server_default=db.text("false"))
|
||||
|
||||
@property
|
||||
def total_documents(self):
|
||||
|
|
|
|||
Loading…
Reference in New Issue