function party_update_7025 in Party 7
Remove the module and status field.
File
- ./
party.install, line 193 - Contains install hooks for the CRM party module.
Code
function party_update_7025() {
db_drop_field('party', 'module');
db_drop_field('party', 'status');
// Rebuild the schema cache.
drupal_flush_all_caches();
}