Suppose I have an existing database with existing data.
Is there any infrastructure / ORM that generates SQL data conversion scripts when I need the data type of the change column? Of course, there are problems with conversions such as
- float to int
- string to int
but I would like to have a default functionality that automatically converts data from
- int swim
- int for the string.
Should I always write SQL data conversion scripts in both cases?
source share