postgresql set not null constraint code example
Example 1: postgresql add not null constraint
alter table users alter column email set not null;
Example 2: postgresql remove not null constraint
alter table users alter column email drop not null;