With last DEV version 6.x-3.x-dev (April 29, 2010)
user warning:
Table 'drupal.view_tablefield' doesn't exist query:
SELECT v.vid, v.tablename, v.field, v.options
FROM content_node_field_instance c
INNER JOIN view_tablefield v ON v.field = CONCAT(c.field_name, '_fid')
WHERE c.widget_module = 'imagefield'
OR c.widget_type = 'imagefield_widget'
in /home/drupal/drupal6/sites/all/modules/imagefield/imagefield.install on line 332.
I think it's related with new commited patch for #455368: Views field format lost after update
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | imagefield_update_remove_views_update.patch | 2.95 KB | quicksketch |
Comments
Comment #1
quicksketchOh hmm. Sure enough. It seems that update was actually intended to update the Views 1 database tables. Unfortunately there's no way we can guarantee that Views has or has not been updated already by the time that our update runs, and certainly this change isn't functional on existing Drupal 6 sites.
I've taken the views portion out of the update (and put the update in the correct place in the file) with the attached patch. No problems should have been caused by the update failing. Thanks for testing this out!