When updating from 1.14.1 to 1.18, the email_id column should be added to the thread_entry_email table.
After running update, the thread_entry_email_new table is created but not filled with data. Updater is waiting.
I realize this is an update to version 1.15 and I don't want to waste time with this problem. I can create the required table myself. Therefore, I would just like to ask: what data should the email_id column be filled with?
When I look at the SQL query that is executed during the update, I have the feeling that the column will remain empty.
// Insert rows into the new table starting at the start and stopping at the end id
$sql = "INSERT INTO ". THREAD_ENTRY_EMAIL_NEW_TABLE ."
SELECT B.id, B.thread_entry_id, NULL, B.mid, B.headers
FROM ". THREAD_ENTRY_EMAIL_TABLE . " B
WHERE B.id >= ".$info['start']." AND B.id < ". $info['end'];
Are data added to the email_id column until after the update?