mirror of https://github.com/BOINC/boinc.git
8 lines
225 B
MySQL
8 lines
225 B
MySQL
|
create table batch_file_assoc (
|
||
|
job_file_id integer not null,
|
||
|
batch_id integer not null
|
||
|
) engine=InnoDB;
|
||
|
|
||
|
alter table batch_file_assoc
|
||
|
add unique(job_file_id, batch_id);
|