I currently have a mysql table which is reaching the maxint mark with the autoincrement column.
Is it save to change the field type to Bigint without loss of data?
Or do I need to use a duplicate table with a bigint field, copy all data, and then remove the original and rename the copy to be sure I don't lose data?