Currently my database is in MS SQL. I have table with 100k records. this table has a column which is primary key, auto incremented as GUID. Recently I migrated the data to MySQL (using workbench) and it was all successful but when I try to insert any data it fails. I found that the column 'Id' was migrated as Varchar(36) and hence the rows are not getting incremented.
What is the best solution to overcome issue? This is a sample of just one table and I have around table with the same issue.