src/hg/lib/trackVersion.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/trackVersion.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/trackVersion.as,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/lib/trackVersion.as	6 Mar 2008 19:05:37 -0000	1.1
+++ src/hg/lib/trackVersion.as	29 Apr 2010 03:40:21 -0000	1.2
@@ -1,13 +1,13 @@
 table trackVersion
 "version information for database tables to monitor data loading history"
     (
     int ix;            "auto-increment ID"
     string db;         "UCSC database name"
     string name;       "table name in database"
     string who;        "Unix userID that performed this update"
     string version;    "version string, whatever is meaningful for data source"
-    datetime updateTime; "YYYY-MM-DD HH:MM:SS most-recent-update time"
+    string updateTime; "YYYY-MM-DD HH:MM:SS most-recent-update time"
     string comment;    "other comments about version"
     string source;     "perhaps a URL for the data source"
     string dateReference;     "Ensembl date string for archive reference"
     )