您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

test_migrations.sh 308B

123456789101112
  1. #!/usr/bin/env bash
  2. #
  3. # Test migrations run correctly
  4. # Fail if any command fails
  5. # http://stackoverflow.com/questions/90418/exit-shell-script-based-on-process-exit-code
  6. set -e
  7. set -o pipefail
  8. # Postgres
  9. echo "Running migrations against Postgres"
  10. ./manage.py migrate --noinput --settings=settings_postgres