function profile_update_7002

Change the weight column to normal int.

File

modules/profile/profile.install, line 165

Code

function profile_update_7002() {
    db_change_field('profile_field', 'weight', 'weight', array(
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
        'description' => 'Weight of field in relation to other profile fields.',
    ));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.