Lots of Googling later, this is how to change the "default" of a table column in Sybase:
alter table mytable
replace mycolumn default null
alter table mytable
modify mycolumn default null
Just for the record, in case people google to here!ALTER TABLE foo ALTER COLUMN bar SET DEFAULT expression;