update_117
- Versions
- 4.6
update_117()
Code
database/updates.inc, line 2126
<?php
function update_117() {
$ret = array();
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("CREATE TABLE {vocabulary_node_types} (
vid int(10) NOT NULL default '',
type varchar(16) NOT NULL default '',
PRIMARY KEY (vid, type))");
}
else if ($GLOBALS['db_type'] == 'pgsql') {
$ret[] = update_sql("CREATE TABLE {vocabulary_node_types} (
vid serial,
type varchar(16) NOT NULL default '',
PRIMARY KEY (vid, type)) ");
}
return $ret;
}
?>Login or register to post comments 