mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 06:57:47 +01:00
7 lines
151 B
Bash
7 lines
151 B
Bash
#!/bin/bash
|
|
# Script to upgrade the database using Alembic
|
|
|
|
cd backend || { echo "Directory 'backend' does not exist"; exit 1; }
|
|
alembic upgrade head
|
|
|