function manualcrop_update_7108 in Manual Crop 7
Add the vid field.
File
- ./
manualcrop.install, line 349 - Install, update and uninstall functions for the Manual Crop module.
Code
function manualcrop_update_7108() {
// Add the vid field.
db_add_field('manualcrop', 'vid', array(
'description' => 'The {file_managed_revisions}.vid (if it exists) of the file.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
));
// Update the primary key so it includes teh vid field.
db_drop_primary_key('manualcrop');
db_add_primary_key('manualcrop', array(
'fid',
'vid',
'style_name',
));
}