You are here

function commerce_kickstart_update_7228 in Commerce Kickstart 7.2

Remove commerce_kickstart_dfp.

File

./commerce_kickstart.install, line 1238
Installation code for Commerce Kickstart.

Code

function commerce_kickstart_update_7228() {
  db_delete('system')
    ->condition('name', 'commerce_kickstart_dfp')
    ->condition('type', 'module')
    ->execute();
  variable_del('commerce_kickstart_dfp_eula');
}