ALTER TABLE [TheTable] DROP CONSTRAINT [TheDefaultConstraint]
Removes a default value for a column. Example (MySQL): Removes the default value from the ‘name’ column in the ‘products’ table. ALTER TABLE products ALTER COLUMN name DROP DEFAULT;