You are here

function spaces_update_6003 in Spaces 6

Same name and namespace in other branches
  1. 6.3 spaces.install \spaces_update_6003()
  2. 6.2 spaces.install \spaces_update_6003()

Update script 6003.

File

./spaces.install, line 210

Code

function spaces_update_6003() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE spaces MODIFY sid int(10) NOT NULL");
  $ret[] = update_sql("ALTER TABLE spaces_settings MODIFY sid int(10) NOT NULL");
  $ret[] = update_sql("ALTER TABLE spaces_features MODIFY sid int(10) NOT NULL");
  return $ret;
}