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 9934E1388C1 for ; Thu, 3 Mar 2016 16:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF164E07D6; Thu, 3 Mar 2016 16:11:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 640E0E07D6 for ; Thu, 3 Mar 2016 16:11:42 +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 D8F2E340A9E for ; Thu, 3 Mar 2016 16:11:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71085180 for ; Thu, 3 Mar 2016 16:11:37 +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: <1457021526.b1033bc8487313febdd1d7bf7a46270f3563185e.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: sql/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: sql/structure_dump.sql X-VCS-Directories: sql/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: b1033bc8487313febdd1d7bf7a46270f3563185e X-VCS-Branch: master Date: Thu, 3 Mar 2016 16:11:37 +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: d49d2726-c0cf-4444-a767-284e598ac02e X-Archives-Hash: 6a4127b4fe75042521c46e9fd1b724b5 commit: b1033bc8487313febdd1d7bf7a46270f3563185e Author: Magnus Granberg gentoo org> AuthorDate: Thu Mar 3 16:12:06 2016 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Thu Mar 3 16:12:06 2016 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=b1033bc8 update db structure for test sql/structure_dump.sql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sql/structure_dump.sql b/sql/structure_dump.sql index cf4bab7..e9443c0 100644 --- a/sql/structure_dump.sql +++ b/sql/structure_dump.sql @@ -3,7 +3,7 @@ -- http://www.phpmyadmin.net -- -- Host: localhost --- Generation Time: Feb 21, 2016 at 08:08 PM +-- Generation Time: Mar 03, 2016 at 03:48 PM -- Server version: 10.0.22-MariaDB-log -- PHP Version: 7.0.3-pl0-gentoo @@ -565,7 +565,9 @@ CREATE TABLE IF NOT EXISTS `restrictions` ( CREATE TABLE IF NOT EXISTS `setups` ( `setup_id` int(11) NOT NULL, `setup` varchar(100) NOT NULL, - `profile` varchar(150) NOT NULL + `profile` varchar(150) NOT NULL, + `test` tinyint(1) NOT NULL DEFAULT '0', + `repoman` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- --------------------------------------------------------