You are here

function commerce_cop_update_7002 in Commerce Custom Offline Payments 7

Drop and recreate 'machine name' unique key replacing space with underscore Required for SQL Server compatibility

File

./commerce_cop.install, line 133
Install functions.

Code

function commerce_cop_update_7002() {
  db_drop_unique_key('commerce_custom_offline_payment', 'machine name');
  db_add_unique_key('commerce_custom_offline_payment', 'machine_name', array(
    'id',
  ));
}