"Gregory Wood" <gregw(at)com-stock(dot)com> writes:
> Is there any way to add a NOT NULL constraint to a new field in a
> table,
After you fill the field with some non-nulls, you could add a CHECK NOT
NULL constraint, or if you prefer efficiency over cleanliness, tweak the
attnotnull field of the field's pg_attribute row.
regards, tom lane