function mobile_tools_update_7301 in Mobile Tools 7.3
Implements hook_update_N().
Add a weight column to device groups
File
- ./
mobile_tools.install, line 185 - Instalation of the mobile_tools module
Code
function mobile_tools_update_7301(&$sandbox) {
$field = array(
'type' => 'int',
'unsigned' => FALSE,
'description' => 'Weight of the device group',
'default' => 0,
'not null' => TRUE,
'initial' => 0,
);
db_add_field('mobile_tools_device_group', 'weight', $field, array(
'indexes' => array(
'weight' => array(
'weight',
),
),
));
}