Add an unnamed CHECK constraint to make sure that values in column column_1 are greater than 0.
This example is valid only if there is not an existing unnamed column level CHECK for column_1 in table_1.
ALTER TABLE table_1 ADD CONSTRAINT column_1 CHECK (column_1 > 0);