I too have this issue. I noticed that wp_wc_product_meta_lookup
has no SKUs and all data is either NULL or 0. This looks to be a new table so it seems the update failed but gave no indication.
All my data looks like:
'12', '', '0', '0', NULL, NULL, '0', NULL, 'instock', '0', '0.00', '0'
I regenerated the Product lookup tables before I looked at this table as I was following this thread.
What I had to do to get this working was to do this:
IN WC > Status > Tools:
– Upgrade database (Did this because I wanted to make sure it upgraded properly even though it was already done with no errors)
– Manually ran: wc_update_product_lookup_tables_column
with Args: 'column' => 'sku'
Now my table has data. I ran Regenerate to see if this was the reason it had empty data but it seemed to be fine.
Since I now have data but not all of it was correct, I manually ran the rest of the pending Scheduled Actions and I checked the table after every run to see if there was any issues. None was found.
Not sure why this way worked to recover my system but it did.
My DB was already updated and I had the new tables.
I want to make note that I updated from 3.5.7 to 3.6.2 in-case that helps with anything.