[Midnightbsd-cvs] mports: schema.sql: Add tasks table.

ctriv at midnightbsd.org ctriv at midnightbsd.org
Wed Oct 31 14:04:06 EDT 2007


Log Message:
-----------
Add tasks table.  Fix column on the categories join table.

Modified Files:
--------------
    mports/Tools/magus:
        schema.sql (r1.4 -> r1.5)

-------------- next part --------------
Index: schema.sql
===================================================================
RCS file: /home/cvs/mports/Tools/magus/schema.sql,v
retrieving revision 1.4
retrieving revision 1.5
diff -LTools/magus/schema.sql -LTools/magus/schema.sql -u -r1.4 -r1.5
--- Tools/magus/schema.sql
+++ Tools/magus/schema.sql
@@ -24,7 +24,7 @@
   `id` int(11) NOT NULL auto_increment,
   `category` varchar(64) default NULL,
   PRIMARY KEY  (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=577 DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
 --
 -- Table structure for table `depends`
@@ -50,7 +50,7 @@
   `machine` int(11) NOT NULL,
   PRIMARY KEY  (`id`),
   UNIQUE KEY `port` (`port`,`arch`)
-) ENGINE=MyISAM AUTO_INCREMENT=3547 DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
 --
 -- Table structure for table `logs`
@@ -75,7 +75,7 @@
   `name` varchar(128) NOT NULL,
   `maintainer` varchar(128) NOT NULL,
   PRIMARY KEY  (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
 --
 -- Table structure for table `port_categories`
@@ -84,7 +84,7 @@
 DROP TABLE IF EXISTS `port_categories`;
 CREATE TABLE `port_categories` (
   `port` varchar(128) NOT NULL,
-  `category_id` int(11) NOT NULL
+  `category` int(11) NOT NULL
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
 --
@@ -116,7 +116,7 @@
   PRIMARY KEY  (`id`),
   KEY `port` (`port`,`version`),
   KEY `port_2` (`port`,`version`,`arch`)
-) ENGINE=MyISAM AUTO_INCREMENT=3522 DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
 --
 -- Table structure for table `subresults`
@@ -132,6 +132,24 @@
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
 
+
+
+--
+-- Table structure for table `tasks`
+--
+
+DROP TABLE IF EXISTS `tasks`;
+CREATE TABLE `tasks` (
+  `id` int(11) NOT NULL auto_increment,
+  `type` varchar(64) NOT NULL,
+  `machine` int(11) NOT NULL,
+  `started` tinyint(1) NOT NULL default '0',
+  `completed` tinyint(1) NOT NULL default '0',
+  PRIMARY KEY  (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
+
+
+
 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;


More information about the Midnightbsd-cvs mailing list