You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.1.0_01_revoke_public.sh 98B

1234567
  1. #! /usr/bin/env bash
  2. psql <<-EOF
  3. \c ${POSTGRES_DB}
  4. REVOKE ALL ON schema public FROM public;
  5. EOF