how to create a non null column in postgresql when creating table code example
Example: postgresql add not null and not empty constraint
ads character varying(60) NOT NULL CHECK (ads <> '')
ads character varying(60) NOT NULL CHECK (ads <> '')