This commit is contained in:
Leon Bösche
2026-01-11 05:42:00 +01:00
parent 9d466fd63a
commit 68270b6906

View File

@@ -31,16 +31,20 @@ run_migration() {
}
# Run migrations in order
echo "Step 1/3: Initial schema..."
echo "Step 1/4: Initial schema..."
run_migration "$SCRIPT_DIR/0001_initial.sql"
echo
echo "Step 2/3: Passkeys and authentication..."
echo "Step 2/4: Passkeys and authentication..."
run_migration "$SCRIPT_DIR/0002_passkeys.sql"
echo
echo "Step 3/3: Files and storage..."
echo "Step 3/4: Files and storage..."
run_migration "$SCRIPT_DIR/0003_files.sql"
echo
echo "Step 4/4: Organization ownership and slug scope..."
run_migration "$SCRIPT_DIR/0004_org_owner_slug.sql"
echo
echo "=== All migrations completed successfully! ==="