You are here

function party_update_7024 in Party 7

Drop the party pieces table.

File

./party.install, line 184
Contains install hooks for the CRM party module.

Code

function party_update_7024() {
  if (db_table_exists('party_party_pieces')) {
    db_delete('party_party_pieces');
  }
}