aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMagnus Granberg <zorry@gentoo.org>2016-03-03 17:12:06 +0100
committerMagnus Granberg <zorry@gentoo.org>2016-03-03 17:12:06 +0100
commitb1033bc8487313febdd1d7bf7a46270f3563185e (patch)
tree9220b7daa8bd7c7bda9f0f5ca52038ee8abe7ddb /sql
parentfix test too many values to unpack (diff)
downloadtinderbox-cluster-b1033bc8487313febdd1d7bf7a46270f3563185e.tar.gz
tinderbox-cluster-b1033bc8487313febdd1d7bf7a46270f3563185e.tar.bz2
tinderbox-cluster-b1033bc8487313febdd1d7bf7a46270f3563185e.zip
update db structure for test
Diffstat (limited to 'sql')
-rw-r--r--sql/structure_dump.sql6
1 files 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;
-- --------------------------------------------------------