]> granicus.if.org Git - postgresql/commitdiff
Add comment for isbn,issn data type, from Pete St. Onge
authorBruce Momjian <bruce@momjian.us>
Tue, 16 Jul 2002 00:48:30 +0000 (00:48 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 16 Jul 2002 00:48:30 +0000 (00:48 +0000)
contrib/isbn_issn/isbn_issn.sql.in

index 816bced206b5eddff61cbd2f8969c613cba56aff..1e9201cdeac0824ce012e88870074b81d83327d3 100644 (file)
@@ -1,7 +1,7 @@
 --
 --     PostgreSQL code for ISSNs.
 --
---     $Id: isbn_issn.sql.in,v 1.3 2002/06/23 21:20:38 momjian Exp $
+--     $Id: isbn_issn.sql.in,v 1.4 2002/07/16 00:48:30 momjian Exp $
 --
 
 
@@ -26,6 +26,10 @@ create type issn (
        output = issn_out
 );
 
+comment on type issn
+  is 'International Standard Serial Number';
+
+
 --
 --     The various boolean tests:
 --
@@ -116,7 +120,7 @@ create operator <> (
 --
 --     PostgreSQL code for ISBNs.
 --
---     $Id: isbn_issn.sql.in,v 1.3 2002/06/23 21:20:38 momjian Exp $
+--     $Id: isbn_issn.sql.in,v 1.4 2002/07/16 00:48:30 momjian Exp $
 --
 --
 --     Input and output functions and the type itself:
@@ -139,6 +143,10 @@ create type isbn (
        output = isbn_out
 );
 
+comment on type isbn
+  is 'International Standard Book Number';
+
+
 --
 --     The various boolean tests:
 --