function field_weight_field_collection_update_7102 in Field display weights (per node) 7.2
Make the primary key nid, vid — not just nid.
File
- modules/
field_weight_field_collection.install, line 59
Code
function field_weight_field_collection_update_7102() {
db_drop_primary_key('field_weight_field_collection');
db_add_primary_key('field_weight_field_collection', array(
'nid',
'vid',
));
}