From 3af3f79e69b088a38a0965ca71fa1512738de266 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 6 Dec 2002 16:40:13 +0000 Subject: [PATCH] In the examples, I missed changing a few 'column' and 'table' mentions to domain when copying alter table docs. -- Rod Taylor --- doc/src/sgml/ref/alter_domain.sgml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/src/sgml/ref/alter_domain.sgml b/doc/src/sgml/ref/alter_domain.sgml index 7562267c0d..4735d42405 100644 --- a/doc/src/sgml/ref/alter_domain.sgml +++ b/doc/src/sgml/ref/alter_domain.sgml @@ -1,5 +1,5 @@ @@ -192,25 +192,25 @@ ALTER DOMAIN domain Usage - To add a NOT NULL constraint to a column: + To add a NOT NULL constraint to a domain: ALTER DOMAIN zipcode SET NOT NULL; - To remove a NOT NULL constraint from a column: + To remove a NOT NULL constraint from a domain: ALTER DOMAIN zipcode DROP NOT NULL; - To add a check constraint to a table: + To add a check constraint to a domain: ALTER DOMAIN zipcode ADD CONSTRAINT zipchk CHECK (char_length(VALUE) = 5); - To remove a check constraint from a table and all its children: + To remove a check constraint from a domain: ALTER DOMAIN zipcode DROP CONSTRAINT zipchk; -- 2.11.0