You are here

function spaces_user_update_6001 in Spaces 6.3

Set module weight of spaces_user to -19

File

spaces_user/spaces_user.install, line 14

Code

function spaces_user_update_6001() {
  db_query("UPDATE {system} SET weight = -19 WHERE name = 'spaces_user' AND type = 'module'");
  return array(
    array(
      'success' => true,
      'query' => 'Set weight of spaces_user to -19.',
    ),
  );
}