commit: 74dc875a027df21c3aa0504e4fc9526fb3c6944d Author: Magnus Granberg <zorry <AT> gentoo <DOT> org> AuthorDate: Tue Oct 4 23:58:19 2022 +0000 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org> CommitDate: Tue Oct 4 23:58:19 2022 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=74dc875a
Fix owner to buildbot Signed-off-by: Magnus Granberg <zorry <AT> gentoo.org> sql/gentoo_ci_schema.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sql/gentoo_ci_schema.sql b/sql/gentoo_ci_schema.sql index fc10eff..ff81661 100644 --- a/sql/gentoo_ci_schema.sql +++ b/sql/gentoo_ci_schema.sql @@ -137,7 +137,7 @@ CREATE TYPE public.projects_status AS ENUM ( ALTER TYPE public.projects_status OWNER TO buildbot; -- --- Name: repositorys_method; Type: TYPE; Schema: public; Owner: postgres +-- Name: repositorys_method; Type: TYPE; Schema: public; Owner: buildbot -- CREATE TYPE public.repositorys_method AS ENUM ( @@ -148,10 +148,10 @@ CREATE TYPE public.repositorys_method AS ENUM ( ); -ALTER TYPE public.repositorys_method OWNER TO postgres; +ALTER TYPE public.repositorys_method OWNER TO buildbot; -- --- Name: repositorys_mode; Type: TYPE; Schema: public; Owner: postgres +-- Name: repositorys_mode; Type: TYPE; Schema: public; Owner: buildbot -- CREATE TYPE public.repositorys_mode AS ENUM ( @@ -160,7 +160,7 @@ CREATE TYPE public.repositorys_mode AS ENUM ( ); -ALTER TYPE public.repositorys_mode OWNER TO postgres; +ALTER TYPE public.repositorys_mode OWNER TO buildbot; -- -- Name: repositorys_type; Type: TYPE; Schema: public; Owner: buildbot
