From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 56F2D138CE5 for ; Fri, 12 Jun 2015 19:32:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39A9DE084F; Fri, 12 Jun 2015 19:32:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51523E0844 for ; Fri, 12 Jun 2015 19:32:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC404340AD7 for ; Fri, 12 Jun 2015 19:32:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A92F2A36 for ; Fri, 12 Jun 2015 19:31:59 +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: <1434137489.e9cc80849b10574cd13f0e2ea22df78f830d7cc1.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: tbc/pym/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: tbc/pym/db_mapping.py X-VCS-Directories: tbc/pym/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: e9cc80849b10574cd13f0e2ea22df78f830d7cc1 X-VCS-Branch: master Date: Fri, 12 Jun 2015 19:31:59 +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: 6943e4e3-31df-4d0a-8159-4d65aa906a58 X-Archives-Hash: c9afd1b2dc67d15d680cbd920e4ab63d commit: e9cc80849b10574cd13f0e2ea22df78f830d7cc1 Author: Magnus Granberg gentoo org> AuthorDate: Fri Jun 12 19:31:29 2015 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Fri Jun 12 19:31:29 2015 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=e9cc8084 Rename git_www to RepoPath tbc/pym/db_mapping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tbc/pym/db_mapping.py b/tbc/pym/db_mapping.py index 31e1b66..b78bd1e 100644 --- a/tbc/pym/db_mapping.py +++ b/tbc/pym/db_mapping.py @@ -56,7 +56,7 @@ class ConfigsMetaData(Base): Updateing = Column('updateing', Boolean, default=False) Status = Column('status', Enum('Stopped', 'Runing', 'Waiting')) Auto = Column('auto', Boolean, default=False) - GitWww = Column('git_www', String(200)) + RepoPath = Column('repo_path', String(200)) TimeStamp = Column('time_stamp', DateTime, nullable=False, default=datetime.datetime.utcnow) __tablename__ = 'configs_metadata'