b65ab8a0ca
Signed-off-by: nolash <dev@holbrook.no>
7 lines
171 B
Bash
7 lines
171 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
>&2 echo executing database migration
|
|
python scripts/migrate.py -c /usr/local/etc/cic-eth --migrations-dir /usr/local/share/cic-eth/alembic -vv
|
|
set +e
|