- Make a backup before you follow the next steps (Just incase.)
- Add a new column called 'extradata' to your 'items' table.
- Run this query:
Code:
UPDATE items INNER JOIN items_extra_data ON items.id = items_extra_data.item_id SET items.extradata = items_extra_data.extra_data
Query may take a while to execute depending on the size of your database. Run it through navicat if it times out in PHPMyAdmin.
What it does it joines the table items_extra_data on the 'items' table where the 'items.id' column matches with the 'items_extra_data.item_id' column and then sets the value for the 'extradata' column in the 'items' table.
If you want to have the column a other name just replace 'extradata' with whatever you want.
Let me know if this worked.