summaryrefslogtreecommitdiff
path: root/sql/MySQL/deploy/1/001-auto.sql
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-02-13 14:15:23 +0100
committerfranck cuny <franck@lumberjaph.net>2011-02-13 14:15:23 +0100
commit412587ddac4ba483d06bef9a8a89c07b4d3cf44b (patch)
tree3b58b44657d4e3c2817228a7984f2436e90f1244 /sql/MySQL/deploy/1/001-auto.sql
parentMerge branch 'refactor_builder' (diff)
parentupdate templates to show informations about running tasks (diff)
downloadjitterbug-412587ddac4ba483d06bef9a8a89c07b4d3cf44b.tar.gz
resolve merge conflict
Diffstat (limited to 'sql/MySQL/deploy/1/001-auto.sql')
-rw-r--r--sql/MySQL/deploy/1/001-auto.sql46
1 files changed, 46 insertions, 0 deletions
diff --git a/sql/MySQL/deploy/1/001-auto.sql b/sql/MySQL/deploy/1/001-auto.sql
new file mode 100644
index 0000000..2a8b829
--- /dev/null
+++ b/sql/MySQL/deploy/1/001-auto.sql
@@ -0,0 +1,46 @@
+--
+-- Created by SQL::Translator::Producer::MySQL
+-- Created on Mon Jan 24 21:25:06 2011
+--
+;
+SET foreign_key_checks=0;
+--
+-- Table: `project`
+--
+CREATE TABLE `project` (
+ `projectid` integer NOT NULL auto_increment,
+ `name` text NOT NULL,
+ `url` text NOT NULL,
+ `description` text NOT NULL,
+ `owner` text NOT NULL,
+ PRIMARY KEY (`projectid`),
+ UNIQUE `project_name` (`name`)
+) ENGINE=InnoDB;
+--
+-- Table: `commit_push`
+--
+CREATE TABLE `commit_push` (
+ `sha256` text NOT NULL,
+ `content` text NOT NULL,
+ `projectid` integer NOT NULL,
+ `timestamp` datetime NOT NULL,
+ INDEX `commit_push_idx_projectid` (`projectid`),
+ PRIMARY KEY (`sha256`),
+ CONSTRAINT `commit_push_fk_projectid` FOREIGN KEY (`projectid`) REFERENCES `project` (`projectid`)
+) ENGINE=InnoDB;
+--
+-- Table: `task`
+--
+CREATE TABLE `task` (
+ `taskid` integer NOT NULL auto_increment,
+ `sha256` text NOT NULL,
+ `projectid` integer NOT NULL,
+ INDEX `task_idx_sha256` (`sha256`),
+ INDEX `task_idx_projectid` (`projectid`),
+ PRIMARY KEY (`taskid`),
+ UNIQUE `task_projectid` (`projectid`),
+ UNIQUE `task_sha256` (`sha256`),
+ CONSTRAINT `task_fk_sha256` FOREIGN KEY (`sha256`) REFERENCES `commit_push` (`sha256`),
+ CONSTRAINT `task_fk_projectid` FOREIGN KEY (`projectid`) REFERENCES `project` (`projectid`)
+) ENGINE=InnoDB;
+SET foreign_key_checks=1 \ No newline at end of file