[open-ils-commits] r14011 - branches/rel_1_6/Open-ILS/src/sql/Pg (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Sep 11 09:27:45 EDT 2009
Author: erickson
Date: 2009-09-11 09:27:44 -0400 (Fri, 11 Sep 2009)
New Revision: 14011
Modified:
branches/rel_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql
Log:
Patch from Ben Ostrowsky to add some comments to the z39 config table
Modified: branches/rel_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- branches/rel_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql 2009-09-11 13:27:20 UTC (rev 14010)
+++ branches/rel_1_6/Open-ILS/src/sql/Pg/002.schema.config.sql 2009-09-11 13:27:44 UTC (rev 14011)
@@ -487,6 +487,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