aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mkdb.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/mkdb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkdb.sh b/scripts/mkdb.sh
index c9895f8..9e0aaae 100755
--- a/scripts/mkdb.sh
+++ b/scripts/mkdb.sh
@@ -17,7 +17,7 @@ db="${DATABASE_URL#sqlite://}"
[ -f "$db" ] && rm "$db"
[ -d "$root/target" ] || mkdir "$root/target"
-fd . "$root/crates/yt/src/storage/migrate/sql" | while read -r sql_file; do
+fd . "$root/crates/rocie-server/src/storage/migrate/sql" | while read -r sql_file; do
echo "Applying sql migration file: $(basename "$sql_file").."
{
# NOTE(@bpeetz): The wrapping in a transaction is needed to simulate the rust code. <2025-05-07>