Skip to content

Commit

Permalink
travis.py: Better sql
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Apr 15, 2013
1 parent df374fd commit a5fff65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/travis.py
Expand Up @@ -23,8 +23,8 @@ def shell(arg, split_on='~'):
shell('sudo~apt-get~install~solr-jetty~postgresql-%s' % PG_VERSION)

sql = '''
CREATE USER ckanuser WITH PASSWORD \'pass\';
CREATE USER readonlyuser WITH PASSWORD \'pass\';
CREATE USER ckanuser WITH PASSWORD 'pass';
CREATE USER readonlyuser WITH PASSWORD 'pass';
CREATE DATABASE ckan_test WITH OWNER ckanuser;
CREATE DATABASE ckan_test_datastore WITH OWNER ckanuser;
Expand Down

0 comments on commit a5fff65

Please sign in to comment.