boinc/db/schema_condor.sql

8 lines
225 B
MySQL
Raw Normal View History

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);