aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/sqlite/v01.sql
blob: b37e48605d8835bad8d960036d7fb0a8f3c36fca (plain) (tree)
1
2
3
4
5
6
7
                           
                               
                         

         
                                                                
 




                                
                                                                              
 

                                                                
 

                               
                                
                            

                                 
                          
                                                              
                                                         

                                                   
 

                                                               





                                                                                
CREATE TABLE cimple_repos (
	id INTEGER PRIMARY KEY,
	url TEXT NOT NULL
) STRICT;

CREATE UNIQUE INDEX cimple_repos_index_url ON cimple_repos(url);

CREATE TABLE cimple_run_status (
	id INTEGER PRIMARY KEY,
	label TEXT NOT NULL
) STRICT;

CREATE UNIQUE INDEX cimple_run_status_index_label ON cimple_run_status(label);

INSERT INTO cimple_run_status(id, label) VALUES (1, 'created');
INSERT INTO cimple_run_status(id, label) VALUES (2, 'finished');

CREATE TABLE cimple_runs (
	id INTEGER PRIMARY KEY,
	status INTEGER NOT NULL,
	ec INTEGER NOT NULL,
	output BLOB NOT NULL,
	repo_id INTEGER NOT NULL,
	rev TEXT NOT NULL,
	FOREIGN KEY (status) REFERENCES cimple_run_status(id),
	FOREIGN KEY (repo_id) REFERENCES cimple_repos(id)
		ON DELETE CASCADE ON UPDATE CASCADE
) STRICT;

CREATE INDEX cimple_runs_index_status ON cimple_runs(status);
CREATE INDEX cimple_runs_index_repo_id ON cimple_runs(repo_id);

CREATE VIEW cimple_runs_readable AS
	SELECT run.id, status.label, run.ec, run.output, repo.url, run.rev
		FROM cimple_runs AS run
		INNER JOIN cimple_run_status as status ON run.status = status.id
		INNER JOIN cimple_repos as repo ON run.repo_id = repo.id;