Assume that I have existing database with existing data.
Is there any framework / ORM that generates data conversion SQL scripts when I need change column datatype? Of course there is problem with conversions like
- float to int
- string to int
, but I would like to have such default functionality that automatically converts data from
- int to float
- int to string.
Do I have always to write data SQL data conversion scripts in both cases?