src/hg/lib/extFile.as 1.2

1.2 2010/04/29 03:40:21 markd
fixed invalid autoSql that prevented descriptions from being displayed
Index: src/hg/lib/extFile.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/extFile.as,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/lib/extFile.as	17 Mar 2006 23:57:14 -0000	1.1
+++ src/hg/lib/extFile.as	29 Apr 2010 03:40:21 -0000	1.2
@@ -1,9 +1,9 @@
 table extFile
 "External (i.e. not in database) data file info"
     (
     uint id;		"ID/index"
     string name;	"File name (without path)"
     string path;	"Full path of file"
-    long size;		"byte size of file"
+    uint size;		"byte size of file"
     )