function path_access_update_6100 in Path Access 7
Same name and namespace in other branches
- 6 path_access.install \path_access_update_6100()
Update 6100: Set {path_access}.pid SERIAL NOT NULL AUTO_INCREMENT.
File
- ./
path_access.install, line 39
Code
function path_access_update_6100() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {path_access} CHANGE pid pid SERIAL NOT NULL AUTO_INCREMENT");
return $ret;
}