Reply to thread

That's quite feasible.


For existing import log tables, you'd need to run the following query to fix the length of your ID fields:

[code=sql]ALTER TABLE `<YOUR IMPORT LOG TABLE NAME>`

MODIFY COLUMN `old_id` VARBINARY(50) NOT NULL,

MODIFY COLUMN `new_id` VARBINARY(50) NOT NULL[/code]


Back
Top Bottom