4b1e60cc4e12743f5d5194decfb10bda2942dc0c
galt
  Thu Apr 30 22:32:27 2020 -0700
adding missing canPcr field. should have been done long ago.

diff --git src/hg/lib/blatServers.sql src/hg/lib/blatServers.sql
index ccab106..315fe3a 100644
--- src/hg/lib/blatServers.sql
+++ src/hg/lib/blatServers.sql
@@ -1,14 +1,15 @@
 # blatServers.sql was originally generated by the autoSql program, which also 
 # generated blatServers.c and blatServers.h.  This creates the database representation of
 # an object which can be loaded and saved from RAM in a fairly 
 # automatic way.
 
 #Description of online BLAT servers
 CREATE TABLE blatServers (
-    db varchar(32) not null,	# Database name
-    host varchar(128) not null,	# Host (machine) name
+    db varchar(255) not null,	# Database name
+    host varchar(255) not null,	# Host (machine) name
     port int not null,	# TCP/IP port on host
     isTrans tinyint not null,	# 0 for nucleotide/1 for translated nucleotide
+    canPcr tinyint not null,	# 1 for use with PCR, 0 for not
               #Indices
-    INDEX(db)
+    PRIMARY KEY(db)
 );