-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmods.sql
More file actions
13 lines (13 loc) · 739 Bytes
/
mods.sql
File metadata and controls
13 lines (13 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
alter table host
add column p_features varchar(512) not null,
add column boinc_client_version varchar(64) not null,
add column n_usable_coprocs tinyint not null,
add column p_vm_extensions_disabled tinyint not null,
add column virtualbox_version varchar(64) not null,
add column cpu_ec double not null,
add column gpu_ec double not null,
add column cpu_time double not null,
add column gpu_time double not null,
add column njobs_success integer not null,
add column njobs_fail integer not null
;