Fix owners in SQL schema

This commit is contained in:
Léo Serre 2018-10-22 23:49:41 +02:00
parent 634e96dda5
commit a86fde7af7
1 changed files with 5 additions and 5 deletions

View File

@ -19,18 +19,18 @@ SET row_security = off;
-- --
-- TOC entry 7 (class 2615 OID 17905) -- TOC entry 7 (class 2615 OID 17905)
-- Name: topology; Type: SCHEMA; Schema: -; Owner: postgres -- Name: topology; Type: SCHEMA; Schema: -; Owner: kabano
-- --
CREATE SCHEMA topology; CREATE SCHEMA topology;
ALTER SCHEMA topology OWNER TO postgres; ALTER SCHEMA topology OWNER TO kabano;
-- --
-- TOC entry 3890 (class 0 OID 0) -- TOC entry 3890 (class 0 OID 0)
-- Dependencies: 7 -- Dependencies: 7
-- Name: SCHEMA topology; Type: COMMENT; Schema: -; Owner: postgres -- Name: SCHEMA topology; Type: COMMENT; Schema: -; Owner: kabano
-- --
COMMENT ON SCHEMA topology IS 'PostGIS Topology schema'; COMMENT ON SCHEMA topology IS 'PostGIS Topology schema';
@ -150,7 +150,7 @@ ALTER TYPE public.user_rank_enum OWNER TO kabano;
-- --
-- TOC entry 237 (class 1259 OID 18332) -- TOC entry 237 (class 1259 OID 18332)
-- Name: content_comments_sequence; Type: SEQUENCE; Schema: public; Owner: postgres -- Name: content_comments_sequence; Type: SEQUENCE; Schema: public; Owner: kabano
-- --
CREATE SEQUENCE public.content_comments_sequence CREATE SEQUENCE public.content_comments_sequence
@ -161,7 +161,7 @@ CREATE SEQUENCE public.content_comments_sequence
CACHE 1; CACHE 1;
ALTER TABLE public.content_comments_sequence OWNER TO postgres; ALTER TABLE public.content_comments_sequence OWNER TO kabano;
SET default_tablespace = ''; SET default_tablespace = '';