function tmgmt_update_7011 in Translation Management Tool 7
Add uid field for {tmgmt_message} table.
File
- ./
tmgmt.install, line 808 - Installation hooks for the Translation Management module.
Code
function tmgmt_update_7011() {
db_add_field('tmgmt_message', 'uid', array(
'description' => 'The identifier of the user who performed the action.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
}