You are here

function commerce_registration_update_7201 in Commerce Registration 7.2

Adds the commerce_registration_node_settings table.

File

./commerce_registration.install, line 70
Commerce Registration install file.

Code

function commerce_registration_update_7201() {
  if (!db_table_exists('commerce_registration_node_settings')) {
    db_create_table('commerce_registration_node_settings', drupal_get_schema_unprocessed('commerce_registration', 'commerce_registration_node_settings'));
  }
}