mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-09 05:06:44 +10:00
13 lines
192 B
Bash
Executable File
13 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
# Run database migrations
|
|
set -e
|
|
|
|
echo "🔄 Running database migrations..."
|
|
|
|
cd /app/backend
|
|
|
|
# Run migrations
|
|
alembic upgrade head
|
|
|
|
echo "✅ Migrations completed successfully!"
|