6 lines
223 B
Bash
Executable File
6 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Wrapper: apply migration 007 on an existing Postgres volume. See be0 script for options.
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
exec "$ROOT/be0/scripts/apply-migration-007.sh" "$@"
|