function avatar_selection_update_7001 in Avatar Selection 7
Add fid column to avatar_selection table.
File
- ./
avatar_selection.install, line 287 - The Avatar Selection module install file.
Code
function avatar_selection_update_7001() {
db_add_field('avatar_selection', 'fid', array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'initial' => 0,
));
return t('Add fid column to avatar_selection table.');
}