You are here

function commerce_option_update_7103 in Commerce Product Option 7.2

Drop two columns in the commerce_option table as they contain useless data.

File

./commerce_option.install, line 209

Code

function commerce_option_update_7103() {
  db_drop_field('commerce_option', 'field_name');
  db_drop_field('commerce_option', 'field_delta');
}