mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 03:30:10 +00:00
6 lines
161 B
Bash
Executable file
6 lines
161 B
Bash
Executable file
#!/bin/sh
|
|
# first apply migrations
|
|
export PATH="${PATH}:.venv/bin"
|
|
alembic upgrade head
|
|
# then check if the database is up to date with the models
|
|
alembic check
|