Fix up the docker tests

This commit is contained in:
Derry Hamilton 2019-07-12 13:03:23 +01:00
parent e71832f57a
commit f669b1af9d
4 changed files with 81 additions and 3 deletions

View file

@ -44,6 +44,9 @@ CREATE TABLE denormalised_personalia(
lname text
);
GRANT SELECT ON ALL TABLES IN SCHEMA public TO test;
GRANT SELECT,INSERT,UPDATE ON denormalised_personalia TO test;
\c postgres
CREATE TABLE public.container_ready AS SELECT 1 FROM(VALUES(1)) AS a(a);