about summary refs log tree commit diff
path: root/sql/SQLite/deploy/2/001-auto.sql
blob: 45ac741d26c7c0d8c135a155afa4b2a0b99229bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- 
-- Created by SQL::Translator::Producer::SQLite
-- Created on Mon Jan 24 21:26:41 2011
-- 

;
BEGIN TRANSACTION;
--
-- Table: project
--
CREATE TABLE project (
  projectid INTEGER PRIMARY KEY NOT NULL,
  name text NOT NULL,
  url text NOT NULL,
  description text NOT NULL,
  owner text NOT NULL
);
CREATE UNIQUE INDEX project_name ON project (name);
--
-- Table: commit_push
--
CREATE TABLE commit_push (
  sha256 text NOT NULL,
  content text NOT NULL,
  projectid int NOT NULL,
  timestamp datetime NOT NULL,
  PRIMARY KEY (sha256)
);
CREATE INDEX commit_push_idx_projectid ON commit_push (projectid);
--
-- Table: task
--
CREATE TABLE task (
  taskid INTEGER PRIMARY KEY NOT NULL,
  sha256 text NOT NULL,
  projectid int NOT NULL,
  running bool NOT NULL DEFAULT '0'
);
CREATE INDEX task_idx_sha256 ON task (sha256);
CREATE INDEX task_idx_projectid ON task (projectid);
CREATE UNIQUE INDEX task_projectid ON task (projectid);
CREATE UNIQUE INDEX task_sha256 ON task (sha256);
COMMIT