You are here

function uc_order_update_7302 in Ubercart 7.3

Remove unused order pane settings.

File

uc_order/uc_order.install, line 917
Install, update and uninstall functions for the uc_order module.

Code

function uc_order_update_7302() {
  db_delete('variable')
    ->condition('name', 'uc_order_pane_%', 'LIKE')
    ->execute();
}