about summary refs log tree commit diff
path: root/sql/PostgreSQL/deploy/3/001-auto.sql
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-02-13 17:38:02 +0100
committerfranck cuny <franck@lumberjaph.net>2011-02-13 17:38:02 +0100
commit2309ed42a44905214f96a7cbafed444fbf0f714f (patch)
tree2edef616ce274e1ff3b3dfad9554af355b8f59a9 /sql/PostgreSQL/deploy/3/001-auto.sql
parentdon't ignore sql files (diff)
downloadjitterbug-2309ed42a44905214f96a7cbafed444fbf0f714f.tar.gz
import schema modifications
Diffstat (limited to 'sql/PostgreSQL/deploy/3/001-auto.sql')
-rw-r--r--sql/PostgreSQL/deploy/3/001-auto.sql65
1 files changed, 65 insertions, 0 deletions
diff --git a/sql/PostgreSQL/deploy/3/001-auto.sql b/sql/PostgreSQL/deploy/3/001-auto.sql
new file mode 100644
index 0000000..b9caaad
--- /dev/null
+++ b/sql/PostgreSQL/deploy/3/001-auto.sql
@@ -0,0 +1,65 @@
+-- 
+-- Created by SQL::Translator::Producer::PostgreSQL
+-- Created on Sun Feb 13 17:36:37 2011
+-- 
+;
+--
+-- Table: project
+--
+CREATE TABLE "project" (
+  "projectid" serial NOT NULL,
+  "name" text NOT NULL,
+  "url" text NOT NULL,
+  "description" text NOT NULL,
+  "owner" text NOT NULL,
+  PRIMARY KEY ("projectid"),
+  CONSTRAINT "project_name" UNIQUE ("name")
+);
+
+;
+--
+-- Table: commit_push
+--
+CREATE TABLE "commit_push" (
+  "sha256" text NOT NULL,
+  "content" text NOT NULL,
+  "projectid" integer NOT NULL,
+  "timestamp" timestamp NOT NULL,
+  PRIMARY KEY ("sha256")
+);
+CREATE INDEX "commit_push_idx_projectid" on "commit_push" ("projectid");
+
+;
+--
+-- Table: task
+--
+CREATE TABLE "task" (
+  "taskid" serial NOT NULL,
+  "sha256" text NOT NULL,
+  "projectid" integer NOT NULL,
+  "running" bool DEFAULT '0' NOT NULL,
+  "started_when" timestamp,
+  PRIMARY KEY ("taskid"),
+  CONSTRAINT "task_projectid" UNIQUE ("projectid"),
+  CONSTRAINT "task_sha256" UNIQUE ("sha256")
+);
+CREATE INDEX "task_idx_sha256" on "task" ("sha256");
+CREATE INDEX "task_idx_projectid" on "task" ("projectid");
+
+;
+--
+-- Foreign Key Definitions
+--
+
+;
+ALTER TABLE "commit_push" ADD FOREIGN KEY ("projectid")
+  REFERENCES "project" ("projectid") DEFERRABLE;
+
+;
+ALTER TABLE "task" ADD FOREIGN KEY ("sha256")
+  REFERENCES "commit_push" ("sha256") DEFERRABLE;
+
+;
+ALTER TABLE "task" ADD FOREIGN KEY ("projectid")
+  REFERENCES "project" ("projectid") DEFERRABLE;
+