diff options
Diffstat (limited to 'gentoaster.sql')
-rw-r--r-- | gentoaster.sql | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gentoaster.sql b/gentoaster.sql new file mode 100644 index 0000000..17034b8 --- /dev/null +++ b/gentoaster.sql @@ -0,0 +1,20 @@ +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `builds` ( + `id` varchar(32) NOT NULL, + `handle` varchar(32) NOT NULL, + `returncode` int(11) DEFAULT NULL, + `result` text, + `ipaddress` varchar(15) DEFAULT NULL, + `email` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ports` ( + `id` varchar(32) NOT NULL, + `port` int(11) NOT NULL, + `pid` int(11) NOT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; |