2007-10-16 17:15:57 +00:00
|
|
|
create table bossa_app (
|
|
|
|
id integer not null auto_increment,
|
|
|
|
create_time integer not null,
|
|
|
|
name varchar(255) not null,
|
2008-02-12 20:33:05 +00:00
|
|
|
short_name varchar(255) not null,
|
2008-02-11 23:38:31 +00:00
|
|
|
description varchar(255) not null,
|
2007-10-16 17:15:57 +00:00
|
|
|
long_jobs tinyint not null,
|
2008-02-11 23:38:31 +00:00
|
|
|
display_script varchar(255) not null,
|
|
|
|
backend_script varchar(255) not null,
|
|
|
|
hidden tinyint not null,
|
2008-02-13 19:02:44 +00:00
|
|
|
bolt_course_id integer not null,
|
2008-07-13 04:26:23 +00:00
|
|
|
time_estimate integer not null,
|
|
|
|
time_limit integer not null,
|
2007-10-18 21:43:25 +00:00
|
|
|
info text,
|
2008-02-11 23:38:31 +00:00
|
|
|
-- app-specific info, JSON
|
2007-10-16 17:15:57 +00:00
|
|
|
primary key(id)
|
|
|
|
);
|
|
|
|
|
|
|
|
create table bossa_job (
|
|
|
|
id integer not null auto_increment,
|
|
|
|
create_time integer not null,
|
|
|
|
app_id integer not null,
|
2008-06-14 20:38:57 +00:00
|
|
|
batch_id integer not null,
|
2008-07-13 04:26:23 +00:00
|
|
|
state integer not null,
|
2008-02-13 19:02:44 +00:00
|
|
|
transition_time integer not null,
|
2008-07-13 04:26:23 +00:00
|
|
|
info text,
|
|
|
|
is_calibration tinyint not null,
|
|
|
|
priority_0 float not null,
|
|
|
|
-- add more as needed
|
2007-10-16 17:15:57 +00:00
|
|
|
primary key(id)
|
2008-02-11 23:38:31 +00:00
|
|
|
) engine=InnoDB;
|
2007-10-16 17:15:57 +00:00
|
|
|
|
|
|
|
create table bossa_job_inst (
|
|
|
|
id integer not null auto_increment,
|
|
|
|
create_time integer not null,
|
2008-05-30 03:29:31 +00:00
|
|
|
app_id integer not null,
|
2007-10-16 17:15:57 +00:00
|
|
|
job_id integer not null,
|
|
|
|
user_id integer not null,
|
|
|
|
finish_time integer not null,
|
2007-10-18 21:43:25 +00:00
|
|
|
info text,
|
2007-10-16 17:15:57 +00:00
|
|
|
primary key(id)
|
2008-02-11 23:38:31 +00:00
|
|
|
) engine=InnoDB;
|
2007-10-18 21:43:25 +00:00
|
|
|
|
2008-02-12 20:33:05 +00:00
|
|
|
create table bossa_user (
|
2007-10-18 21:43:25 +00:00
|
|
|
user_id integer not null,
|
2008-07-13 04:26:23 +00:00
|
|
|
category integer not null,
|
2008-03-03 19:33:32 +00:00
|
|
|
flags integer not null,
|
2008-07-13 04:26:23 +00:00
|
|
|
-- debug, show_all
|
2007-10-18 21:43:25 +00:00
|
|
|
info text
|
2008-06-14 20:38:57 +00:00
|
|
|
-- Project-dependent info about users ability and performance.
|
|
|
|
);
|
|
|
|
|
|
|
|
create table bossa_batch (
|
|
|
|
id integer not null auto_increment,
|
|
|
|
create_time integer not null,
|
2008-07-13 04:26:23 +00:00
|
|
|
name varchar(255) not null,
|
2008-06-14 20:38:57 +00:00
|
|
|
app_id integer not null,
|
|
|
|
primary key(id)
|
2007-10-18 21:43:25 +00:00
|
|
|
);
|