From 3f67133c9b1c3eb91be26c3cacdc598bf094cfb8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 17 Oct 2008 18:08:26 +0000 Subject: [PATCH] - forgot to add team.joinable to schema.sql svn path=/trunk/boinc/; revision=16229 --- checkin_notes | 6 ++++++ db/schema.sql | 1 + 2 files changed, 7 insertions(+) diff --git a/checkin_notes b/checkin_notes index 9c85056131..f7fb3f04ea 100644 --- a/checkin_notes +++ b/checkin_notes @@ -8448,3 +8448,9 @@ David 17 Oct 2008 html/user/ edit_user_info_action.php + +David 17 Oct 2008 + - forgot to add team.joinable to schema.sql + + db/ + schema.sql diff --git a/db/schema.sql b/db/schema.sql index 7b0eef14a9..67e69d64c0 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -118,6 +118,7 @@ create table team ( seti_id integer not null, ping_user integer not null default 0, ping_time integer unsigned not null default 0, + joinable tinyint not null default 1, primary key (id) ) engine=MyISAM;