[open-ils-commits] r14010 - trunk/Open-ILS/src/sql/Pg (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Sep 11 09:27:21 EDT 2009


Author: erickson
Date: 2009-09-11 09:27:20 -0400 (Fri, 11 Sep 2009)
New Revision: 14010

Modified:
   trunk/Open-ILS/src/sql/Pg/002.schema.config.sql
Log:
Patch from Ben Ostrowsky to add some comments to the z39 config table

Modified: trunk/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/002.schema.config.sql	2009-09-11 03:55:49 UTC (rev 14009)
+++ trunk/Open-ILS/src/sql/Pg/002.schema.config.sql	2009-09-11 13:27:20 UTC (rev 14010)
@@ -489,6 +489,21 @@
     auth                BOOL    NOT NULL DEFAULT TRUE
 );
 
+COMMENT ON TABLE config.z3950_source IS $$
+Z39.50 Sources
+
+Each row in this table represents a database searchable via Z39.50.
+$$;
+
+COMMENT ON COLUMN config.z3950_source.record_format IS $$
+Z39.50 element set.
+$$;
+
+COMMENT ON COLUMN config.z3950_source.transmission_format IS $$
+Z39.50 preferred record syntax..
+$$;
+
+
 CREATE TABLE config.z3950_attr (
     id          SERIAL  PRIMARY KEY,
     source      TEXT    NOT NULL REFERENCES config.z3950_source (name) DEFERRABLE INITIALLY DEFERRED,



More information about the open-ils-commits mailing list