function getlocations_fields_update_7102 in Get Locations 7
Convert float to decimal.
File
- modules/
getlocations_fields/ getlocations_fields.install, line 267 - getlocations_fields.install @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_fields_update_7102() {
$spec = array(
'type' => 'numeric',
'precision' => 10,
'scale' => 6,
'default' => 0.0,
'not null' => TRUE,
);
db_change_field('getlocations_fields', 'latitude', 'latitude', $spec);
db_change_field('getlocations_fields', 'longitude', 'longitude', $spec);
}