From 9226be4b757bc5fed8e449507483f686d6088c6c Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Fri, 1 Dec 2023 22:48:02 +0100 Subject: [PATCH] fix(migration): fixed incorrect key --- migration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration.sh b/migration.sh index 94b8b5c30..de5eef5a6 100755 --- a/migration.sh +++ b/migration.sh @@ -43,7 +43,7 @@ fi # Ask user whether to create tables or run migrations CHOICE=$(gum choose --header "Choose an option" "Create all tables (First Time)" "Run Migrations (After updating Quivr)") -if [ "$CHOICE" == "Create all tables" ]; then +if [ "$CHOICE" == "Create all tables (First Time)" ]; then # Running the tables.sql file to create tables run_sql_file "scripts/tables.sql" else