Hi,
I'm trying to migrate an existing (mysql-) database with auto generated IDs in several primary keys.
I found a note in the docs saying its not possible. In fact, the IDs gets corrupted if i try to.
As a first workaround, I disabled the autogeneration -> works fine, all IDs are correct.
Am I right, there is no way in marking columns as autogenerated if not done in the CREATE TABLE statement?
The only workaround I can see at the moment is creating procedures to use them as a sequences.
Any other ideas?
Lars