aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiam McLoughlin <hexxeh@hexxeh.net>2011-08-10 18:39:11 +0100
committerLiam McLoughlin <hexxeh@hexxeh.net>2011-08-10 18:39:11 +0100
commit7f2c98b0d095c5c173fed07a0f8f32d51798d97e (patch)
treefe1d3817c8a221c72c70a0205f8e776e08554ec7 /gentoaster.sql
parentAdding GNOME config (diff)
downloadgentoaster-7f2c98b0d095c5c173fed07a0f8f32d51798d97e.tar.gz
gentoaster-7f2c98b0d095c5c173fed07a0f8f32d51798d97e.tar.bz2
gentoaster-7f2c98b0d095c5c173fed07a0f8f32d51798d97e.zip
Combine configs, fix image download path via a new config option, add initscript
Diffstat (limited to 'gentoaster.sql')
-rw-r--r--gentoaster.sql20
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 */;