Index: branches/czw_branch/20100519/dbconfig/changes.txt
===================================================================
--- branches/czw_branch/20100519/dbconfig/changes.txt	(revision 28164)
+++ branches/czw_branch/20100519/dbconfig/changes.txt	(revision 28245)
@@ -1716,8 +1716,8 @@
 CREATE TABLE warpSummary (
     warp_id     BIGINT,
-    tangent_plane VARCHAR(64) NOT NULL,
+    projection_cell VARCHAR(64) NOT NULL,
     path_base   VARCHAR(255) NOT NULL,
     PRIMARY KEY(warp_id),
-    KEY(tangent_plane),
+    KEY(projection_cell),
     FOREIGN KEY(warp_id) REFERENCES warpRun(warp_id)
 ) ENGINE=innodb DEFAULT CHARSET=latin1;
@@ -1725,8 +1725,8 @@
 CREATE TABLE diffSummary (
     diff_id     BIGINT,
-    tangent_plane VARCHAR(64) NOT NULL,
+    projection_cell VARCHAR(64) NOT NULL,
     path_base   VARCHAR(255) NOT NULL,
     PRIMARY KEY(diff_id),
-    KEY(tangent_plane),
+    KEY(projection_cell),
     FOREIGN KEY(diff_id) REFERENCES diffRun(diff_id)
 ) ENGINE=innodb DEFAULT CHARSET=latin1;
@@ -1734,8 +1734,8 @@
 CREATE TABLE stackSummary (
     stack_id     BIGINT,
-    tangent_plane VARCHAR(64) NOT NULL,
+    projection_cell VARCHAR(64) NOT NULL,
     path_base   VARCHAR(255) NOT NULL,
     PRIMARY KEY(stack_id),
-    KEY(tangent_plane),
+    KEY(projection_cell),
     FOREIGN KEY(stack_id) REFERENCES stackRun(stack_id)
 ) ENGINE=innodb DEFAULT CHARSET=latin1;
@@ -1744,10 +1744,10 @@
     sass_id      BIGINT AUTO_INCREMENT,
     data_group   VARCHAR(64) NOT NULL,
-    tangent_plane VARCHAR(64) NOT NULL,
+    projection_cell VARCHAR(64) NOT NULL,
     tess_id       VARCHAR(64) NOT NULL,
     filter        VARCHAR(64) NOT NULL,
     PRIMARY KEY(sass_id),
     KEY(data_group),
-    KEY(tangent_plane),
+    KEY(projection_cell),
     KEY(tess_id)
 ) ENGINE=innodb DEFAULT CHARSET=latin1;
Index: branches/czw_branch/20100519/dbconfig/diff.md
===================================================================
--- branches/czw_branch/20100519/dbconfig/diff.md	(revision 28164)
+++ branches/czw_branch/20100519/dbconfig/diff.md	(revision 28245)
@@ -77,6 +77,6 @@
 
 diffSummary METADATA
-    diff_id	   S64      0       # Primary Key fkey(diff_id) ref diffRun(diff_id)
-    tangent_plane  STR	    32	    # Primary Key
-    path_base 	   STR	    255
+    diff_id	    S64      0       # Primary Key fkey(diff_id) ref diffRun(diff_id)
+    projection_cell STR	    32	    # Primary Key
+    path_base 	    STR	    255
 END
Index: branches/czw_branch/20100519/dbconfig/stack.md
===================================================================
--- branches/czw_branch/20100519/dbconfig/stack.md	(revision 28164)
+++ branches/czw_branch/20100519/dbconfig/stack.md	(revision 28245)
@@ -56,5 +56,5 @@
 stackSummary METADATA
     stack_id	   S64      0       # Primary Key fkey(stack_id) ref stackRun(stack_id)
-    tangent_plane  STR	    32	    # Primary Key
+    projection_cell  STR	    32	    # Primary Key
     path_base 	   STR	    255
 END
@@ -63,5 +63,5 @@
     sass_id        S64      0       # Primary Key AUTO_INCREMENT
     data_group     STR      64      # Key
-    tangent_plane  STR      64      # Key
+    projection_cell  STR      64      # Key
     tess_id        STR      64      # Key
     filter         STR      64
Index: branches/czw_branch/20100519/dbconfig/warp.md
===================================================================
--- branches/czw_branch/20100519/dbconfig/warp.md	(revision 28164)
+++ branches/czw_branch/20100519/dbconfig/warp.md	(revision 28245)
@@ -82,5 +82,5 @@
 warpSummary METADATA
     warp_id	   S64      0       # Primary Key fkey(warp_id) ref warpRun(warp_id)
-    tangent_plane  STR	    32	    # Primary Key
+    projection_cell  STR	    32	    # Primary Key
     path_base 	   STR	    255
 END
