Files
yii/tests/travis/postgresql-setup.sh
2012-09-05 11:47:38 +02:00

6 lines
217 B
Bash
Executable File

#!/bin/sh
psql -q -c "CREATE ROLE test WITH PASSWORD 'test' LOGIN;" -U postgres
psql -q -c 'CREATE DATABASE yii WITH OWNER = test;' -U postgres
psql -q -c 'GRANT ALL PRIVILEGES ON DATABASE yii TO test;' -U postgres