In the examples, I missed changing a few 'column' and 'table' mentions
authorBruce Momjian
Fri, 6 Dec 2002 16:40:13 +0000 (16:40 +0000)
committerBruce Momjian
Fri, 6 Dec 2002 16:40:13 +0000 (16:40 +0000)
to domain when copying alter table docs.
--
Rod Taylor 

doc/src/sgml/ref/alter_domain.sgml

index 7562267c0d2bf0189c9b2db603d8ee633fb6217f..4735d4240590acc2a1dc18baa86b9b9b703af97c 100644 (file)
@@ -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;