function og_update_10 in Organic groups 5.3
Same name and namespace in other branches
- 5.8 og.install \og_update_10()
- 5 og.install \og_update_10()
- 5.2 og.install \og_update_10()
- 5.7 og.install \og_update_10()
File
- ./
og.install, line 261
Code
function og_update_10() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
$ret[] = update_sql("ALTER TABLE {og_uid} ADD created int(11) NULL DEFAULT 0");
$ret[] = update_sql("ALTER TABLE {og_uid} ADD changed int(11) NULL DEFAULT 0");
break;
case 'pgsql':
$ret[] = update_sql("ALTER TABLE {og_uid} ADD COLUMN created int NULL DEFAULT 0");
$ret[] = update_sql("ALTER TABLE {og_uid} ADD COLUMN changed int NULL DEFAULT 0");
break;
}
return $ret ? $ret : array();
}