From 61609bb341605d0fc6cd86bebf2d0d25612ff64e Mon Sep 17 00:00:00 2001
From: "Leigh B. Stoller" <stoller@flux.utah.edu>
Date: Wed, 30 Mar 2005 17:44:17 +0000
Subject: [PATCH] Add some booleans to obstacles table to 1) control the
 drawing of the exclusion zone on a per-obstacle basis, and 2) show the
 tooltip.

---
 sql/database-create.sql  |  2 ++
 sql/database-migrate.txt | 10 ++++++++++
 2 files changed, 12 insertions(+)

diff --git a/sql/database-create.sql b/sql/database-create.sql
index 17fa26a8c8..555ffd40a7 100644
--- a/sql/database-create.sql
+++ b/sql/database-create.sql
@@ -1279,6 +1279,8 @@ CREATE TABLE obstacles (
   description tinytext,
   label tinytext,
   draw tinyint(1) NOT NULL default '0',
+  no_exclusion tinyint(1) NOT NULL default '0',
+  no_tooltip tinyint(1) NOT NULL default '0',
   PRIMARY KEY  (obstacle_id)
 ) TYPE=MyISAM;
 
diff --git a/sql/database-migrate.txt b/sql/database-migrate.txt
index e5343ac7e2..2b398ad870 100644
--- a/sql/database-migrate.txt
+++ b/sql/database-migrate.txt
@@ -2584,3 +2584,13 @@ last_net_act,last_cpu_act,last_ext_act);
 	  vnode varchar(32) NOT NULL default '',
 	  PRIMARY KEY  (pid,eid,host,vnode)
 	) TYPE=MyISAM;
+
+1.329: Add some booleans to obstacles table to 1) control the drawing of
+       the exclusion zone on a per-obstacle basis, and 2) show the
+       tooltip.
+
+	alter table obstacles add no_exclusion tinyint(1) NOT NULL \
+                default '0';
+	alter table obstacles add no_tooltip tinyint(1) NOT NULL \
+                default '0';
+
-- 
GitLab