a3388dd3d91dc0e5023cfbda12e249d419f3e960
braney
  Sun Nov 22 07:10:28 2020 -0800
add ability to have a default cart other than the empty one.

diff --git src/hg/lib/defaultCart.sql src/hg/lib/defaultCart.sql
new file mode 100644
index 0000000..385421e
--- /dev/null
+++ src/hg/lib/defaultCart.sql
@@ -0,0 +1,9 @@
+# defaultCart.sql was originally generated by the autoSql program, which also 
+# generated defaultCart.c and defaultCart.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#The default cart
+CREATE TABLE defaultCart (
+    contents longblob not null	# cart contents
+);