2021-02-01 18:12:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-10 08:03:11 +01:00
|
|
|
set -e
|
|
|
|
>&2 echo executing database migration
|
2021-02-01 18:12:51 +01:00
|
|
|
migrate.py -c /usr/local/etc/cic-eth --migrations-dir /usr/local/share/cic-eth/alembic -vv
|
2021-02-10 08:03:11 +01:00
|
|
|
set +e
|