From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E1E2B158094 for ; Tue, 4 Oct 2022 23:58:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BE73E086A; Tue, 4 Oct 2022 23:58:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1240FE086A for ; Tue, 4 Oct 2022 23:58:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F706340EFD for ; Tue, 4 Oct 2022 23:58:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66AFD55B for ; Tue, 4 Oct 2022 23:58:34 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1664927899.74dc875a027df21c3aa0504e4fc9526fb3c6944d.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: sql/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: sql/gentoo_ci_schema.sql X-VCS-Directories: sql/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 74dc875a027df21c3aa0504e4fc9526fb3c6944d X-VCS-Branch: master Date: Tue, 4 Oct 2022 23:58:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e5b60aaa-fc2d-4f2e-b7c6-06b87dcbf090 X-Archives-Hash: 7ae407f724878449dfafa84dfbe83d56 commit: 74dc875a027df21c3aa0504e4fc9526fb3c6944d Author: Magnus Granberg gentoo org> AuthorDate: Tue Oct 4 23:58:19 2022 +0000 Commit: Magnus Granberg gentoo 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 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