blob: 9786064fe0b59da545ebfcdfe7caa22f0bf4b522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
create table job_spec (
name text not null,
url text not null,
branch text not null,
file text not null,
proc text not null,
arguments text not null,
primary key (name)
);
create table build (
id integer primary key autoincrement not null,
job_spec text not null,
drv text not null,
log text,
output text
-- foreign key (job_spec) references job_spec(name)
);
|