forked from mystiq/dex
14 lines
277 B
Bash
Executable file
14 lines
277 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Tweak PATH for Travis
|
|
export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
OPTIONS="-config=test-integration/dbconfig.yml -env postgres"
|
|
|
|
set -ex
|
|
|
|
sql-migrate status $OPTIONS
|
|
sql-migrate up $OPTIONS
|
|
sql-migrate down $OPTIONS
|
|
sql-migrate redo $OPTIONS
|
|
sql-migrate status $OPTIONS
|