fix(migration): fixed incorrect key

This commit is contained in:
Stan Girard 2023-12-01 22:48:02 +01:00
parent 05453677ad
commit 9226be4b75

View File

@ -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