File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ CREATE TABLE cities (
616
616
);
617
617
618
618
CREATE TABLE capitals (
619
- state char(2)
619
+ state char(2) UNIQUE NOT NULL
620
620
) INHERITS (cities);
621
621
</programlisting>
622
622
</para>
@@ -630,7 +630,8 @@ CREATE TABLE capitals (
630
630
<type>text</type>, a native <productname>PostgreSQL</productname>
631
631
type for variable length character strings. The
632
632
<classname>capitals</classname> table has
633
- an extra column, <structfield>state</structfield>, which shows their states. In
633
+ an additional column, <structfield>state</structfield>, which shows its
634
+ state abbreviation. In
634
635
<productname>PostgreSQL</productname>, a table can inherit from
635
636
zero or more other tables.
636
637
</para>
You can’t perform that action at this time.
0 commit comments