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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF810139085 for ; Thu, 22 Dec 2016 10:15:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2068F2340F5; Thu, 22 Dec 2016 10:15:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F3B602340F5 for ; Thu, 22 Dec 2016 10:15:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1409340FC1 for ; Thu, 22 Dec 2016 10:15:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EAF7024FA for ; Thu, 22 Dec 2016 10:15:02 +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: <1482401674.f8bbed36aa7ed37a73b7d06347a9b8558c8dc728.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: pym/tbc/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: pym/tbc/db_mapping.py X-VCS-Directories: pym/tbc/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: f8bbed36aa7ed37a73b7d06347a9b8558c8dc728 X-VCS-Branch: master Date: Thu, 22 Dec 2016 10:15:02 +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-Archives-Salt: 21f7e478-90ac-48ae-84ce-e563d3932517 X-Archives-Hash: 439cf8be2dbe93c8e47d1924da293a62 commit: f8bbed36aa7ed37a73b7d06347a9b8558c8dc728 Author: Magnus Granberg gentoo org> AuthorDate: Thu Dec 22 10:14:34 2016 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Thu Dec 22 10:14:34 2016 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=f8bbed36 fix commit to git_commit pym/tbc/db_mapping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/tbc/db_mapping.py b/pym/tbc/db_mapping.py index 964df54..91ae5dd 100644 --- a/pym/tbc/db_mapping.py +++ b/pym/tbc/db_mapping.py @@ -286,7 +286,7 @@ class EbuildsKeywords(Base): class EbuildsMetadata(Base): Id = Column('id', Integer, primary_key=True) EbuildId = Column('ebuild_id', ForeignKey('ebuilds.ebuild_id')) - Commit = Column('commit', String(100)) + Commit = Column('git_commit', String(100)) CommitMsg = Column('git_commit_msg', String(200)) New = Column('new', Boolean, default=False) Updated = Column('updated', Boolean, default=False)