diff --git a/.travis.yml b/.travis.yml index 6185561..ef5b1d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,5 +17,6 @@ before_script: - psql -c 'create database postgresql_cursor_test;' -U postgres - psql -c 'CREATE ROLE travis SUPERUSER LOGIN CREATEDB;' -U postgres - psql -c 'create table products ( id serial primary key, data varchar);' -U postgres -d postgresql_cursor_test + - psql -c 'create table prices ( id serial primary key, data varchar, product_id integer);' -U postgres -d postgresql_cursor_test addons: postgresql: '12.1'