From c9b563f066e3d8405a8bf3729cfd04d39456a2b2 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 27 Mar 2008 20:46:31 +0000 Subject: [PATCH] - DB: workunit.rsc_bandwidth needed to go after mod_time svn path=/trunk/boinc/; revision=14970 --- checkin_notes | 6 ++++++ db/schema.sql | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 3f3c8190dd..1f8ca9e171 100644 --- a/checkin_notes +++ b/checkin_notes @@ -2723,3 +2723,9 @@ David Mar 27 2008 client/ work_fetch.C + +David Mar 27 2008 + - DB: workunit.rsc_bandwidth needed to go after mod_time + + db/ + schema.sql diff --git a/db/schema.sql b/db/schema.sql index 98ae1c14de..26a5360b24 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -210,8 +210,8 @@ create table workunit ( max_success_results integer not null, result_template_file varchar(63) not null, priority integer not null, - rsc_bandwidth_bound double not null, mod_time timestamp, + rsc_bandwidth_bound double not null, primary key (id) ) engine=InnoDB;