Drupal:“;模式模块";状态报告中的已安装错误和新错误

Drupal:“;模式模块";状态报告中的已安装错误和新错误,drupal,drupal-6,Drupal,Drupal 6,我已经安装了模式模块来将数据库条目导入drupal CCK字段。现在在Status报告中,我得到了以下错误消息。我可以忽略它吗?或者我应该解决一些严重的问题吗 Database schema Inconsistent The Schema comparison report shows: 42 modules with matching tables 41 extra tables 2 warnings 3 module with mis-matching tables 更准确地说: Mism

我已经安装了模式模块来将数据库条目导入drupal CCK字段。现在在Status报告中,我得到了以下错误消息。我可以忽略它吗?或者我应该解决一些严重的问题吗

Database schema
Inconsistent The
Schema comparison report shows:
42 modules with matching tables
41 extra tables
2 warnings
3 module with mis-matching tables
更准确地说:

Mismatch (4)
Tables for which the schema and database are different.

user
users

timezone_name: unexpected column in database

image_fupload
fupload_previewlist

column uid - difference on: length
declared: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'length' => '10', 'not null' => TRUE, 'default' => 0)
actual: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'not null' => TRUE, 'default' => 0)
column nid - difference on: length
declared: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'length' => '10', 'not null' => TRUE, 'default' => 0)
actual: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'not null' => TRUE, 'default' => 0)
column fid - differences on: not null, length
declared: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'length' => '11', 'not null' => FALSE, 'default' => 0)
actual: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'not null' => TRUE, 'default' => 0)
column created - difference on: length
declared: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'length' => '11', 'not null' => TRUE, 'default' => 0)
actual: array('description' => t('TODO: please describe this field!'), 'type' => 'int', 'not null' => TRUE, 'default' => 0)
也许吧

确保已运行update.php,并且模块对数据库的所有更改都是最新的

如果在临时站点和活动站点之间复制数据库或模块,并且无法保持数据库更改的同步,则有时会遇到问题。除了手动校正之外,您在那里可以做的事情不多

如果您的站点已完全更新,并且没有开发/登台/现场差异,那么除了向模块开发人员报告问题之外,您不太可能需要做其他事情