function workbench_moderation_update_7002 in Workbench Moderation 7
Same name and namespace in other branches
- 7.3 workbench_moderation.install \workbench_moderation_update_7002()
Drop the unused 'ntypes' field from workbench_moderation_transitions.
File
- ./
workbench_moderation.install, line 273 - Install file for the Workbench Moderation module.
Code
function workbench_moderation_update_7002() {
db_drop_field('workbench_moderation_transitions', 'ntype');
return t('Dropped unused field from the moderation transitions table.');
}