Remove Not Null Constraint From A Column
When you want to add a not null
constraint to a column, you do so by setting it.
You can remove a not null
constraint from a column, by dropping it.
Notice this excerpt of syntax from the official Postgres docs:
Last updated