Is there a way to set a default value for existing entries after the column has been created using Hibernate?
Found that the operation could be done manually by:
ALTER TABLE Employee
ADD DEFAULT('SANDNES') FOR CityBorn
but is there a way to do something using hibernate?