function simple_package_tracking_update_7101 in Simple Package Tracking 7
Adds tracking_note field to the tracking_numbers table.
File
- ./
simple_package_tracking.install, line 109 - Install hooks for simple_package_tracking.module.
Code
function simple_package_tracking_update_7101() {
$spec = array(
'description' => 'Any short extra note, such as the date the item was shipped.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
);
db_add_field('tracking_numbers', 'tracking_note', $spec);
}