From afaf4ea0b1c5494c300479ce7446276242bf9636 Mon Sep 17 00:00:00 2001 From: Christophe Bornet Date: Tue, 25 Feb 2025 15:35:02 +0100 Subject: [PATCH] fix: Fix URL for alembic migrations (#6806) Fix URL for alembic migrations Co-authored-by: Gabriel Luiz Freitas Almeida --- src/backend/base/langflow/alembic.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/base/langflow/alembic.ini b/src/backend/base/langflow/alembic.ini index 9739c069d..6de6e6ec7 100644 --- a/src/backend/base/langflow/alembic.ini +++ b/src/backend/base/langflow/alembic.ini @@ -61,9 +61,9 @@ version_path_separator = os # Use os.pathsep. Default configuration used for ne # output_encoding = utf-8 # This is the path to the db in the root of the project. -# When the user runs the Langflow the database url will -# be set dinamically. -sqlalchemy.url = sqlite:///./langflow.db +# When the user runs Langflow the database url will +# be set dynamically. +sqlalchemy.url = sqlite+aiosqlite:///./langflow.db [post_write_hooks]