function uc_attribute_update_3 in Ubercart 5
File
- uc_attribute/
uc_attribute.install, line 216
Code
function uc_attribute_update_3() {
$ret = array();
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
$ret[] = update_sql("ALTER TABLE {uc_class_attributes} CHANGE pcid pcid varchar(32) NOT NULL");
$ret[] = update_sql("ALTER TABLE {uc_class_attribute_options} CHANGE pcid pcid varchar(32) NOT NULL");
break;
case 'pgsql':
db_change_column($ret, 'uc_class_attributes', 'pcid', 'pcid', 'varchar(32)', array(
'not null' => true,
'default' => "''",
));
db_change_column($ret, 'uc_class_attribute_options', 'pcid', 'pcid', 'varchar(32)', array(
'not null' => true,
'default' => "''",
));
break;
}
return $ret;
}