Skip to content
Snippets Groups Projects
Commit b52790b0 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Add comment for isbn,issn data type, from Pete St. Onge

parent 1a6f91c9
No related branches found
No related tags found
No related merge requests found
-- --
-- PostgreSQL code for ISSNs. -- 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 ( ...@@ -26,6 +26,10 @@ create type issn (
output = issn_out output = issn_out
); );
comment on type issn
is 'International Standard Serial Number';
-- --
-- The various boolean tests: -- The various boolean tests:
-- --
...@@ -116,7 +120,7 @@ create operator <> ( ...@@ -116,7 +120,7 @@ create operator <> (
-- --
-- PostgreSQL code for ISBNs. -- 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: -- Input and output functions and the type itself:
...@@ -139,6 +143,10 @@ create type isbn ( ...@@ -139,6 +143,10 @@ create type isbn (
output = isbn_out output = isbn_out
); );
comment on type isbn
is 'International Standard Book Number';
-- --
-- The various boolean tests: -- The various boolean tests:
-- --
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment