forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbossa_schema.sql
43 lines (40 loc) · 1.47 KB
/
bossa_schema.sql
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
create table bossa_app (
id integer not null auto_increment,
create_time integer not null,
name varchar(255) not null,
user_friendly_name varchar(255) not null,
long_jobs tinyint not null,
start_url varchar(255) not null,
deprecated tinyint not null,
info text,
primary key(id)
);
create table bossa_job (
id integer not null auto_increment,
create_time integer not null,
name varchar(255) not null,
app_id integer not null,
info text,
batch integer not null,
time_estimate integer not null,
time_limit integer not null,
more_needed tinyint not null,
npending smallint not null,
nsuccess smallint not null,
nsuccess_needed smallint not null,
primary key(id)
);
create table bossa_job_inst (
id integer not null auto_increment,
create_time integer not null,
job_id integer not null,
user_id integer not null,
finish_time integer not null,
info text,
primary key(id)
);
create table bossa_app_user (
app_id integer not null,
user_id integer not null,
info text
);