Patch from Ben Ostrowsky to add some comments to the z39 config table
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 11 Sep 2009 13:27:44 +0000 (13:27 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 11 Sep 2009 13:27:44 +0000 (13:27 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6@14011 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/002.schema.config.sql

index 926541e..050144c 100644 (file)
@@ -487,6 +487,21 @@ CREATE TABLE config.z3950_source (
     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,