Skip to content

Commit b52790b

Browse files
committed
Add comment for isbn,issn data type, from Pete St. Onge
1 parent 1a6f91c commit b52790b

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

contrib/isbn_issn/isbn_issn.sql.in

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--
22
-- PostgreSQL code for ISSNs.
33
--
4-
-- $Id: isbn_issn.sql.in,v 1.3 2002/06/23 21:20:38 momjian Exp $
4+
-- $Id: isbn_issn.sql.in,v 1.4 2002/07/16 00:48:30 momjian Exp $
55
--
66

77

@@ -26,6 +26,10 @@ create type issn (
2626
output = issn_out
2727
);
2828

29+
comment on type issn
30+
is 'International Standard Serial Number';
31+
32+
2933
--
3034
-- The various boolean tests:
3135
--
@@ -116,7 +120,7 @@ create operator <> (
116120
--
117121
-- PostgreSQL code for ISBNs.
118122
--
119-
-- $Id: isbn_issn.sql.in,v 1.3 2002/06/23 21:20:38 momjian Exp $
123+
-- $Id: isbn_issn.sql.in,v 1.4 2002/07/16 00:48:30 momjian Exp $
120124
--
121125
--
122126
-- Input and output functions and the type itself:
@@ -139,6 +143,10 @@ create type isbn (
139143
output = isbn_out
140144
);
141145

146+
comment on type isbn
147+
is 'International Standard Book Number';
148+
149+
142150
--
143151
-- The various boolean tests:
144152
--

0 commit comments

Comments
 (0)