taxonomy_title.install in Taxonomy Title 5
File
taxonomy_title.install
View source
<?php
function taxonomy_title_install() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
db_query("CREATE TABLE {taxonomy_title} (\n tid int(11) NOT NULL default '0',\n title varchar(255) NOT NULL default '',\n PRIMARY KEY (tid)\n ) /*!40100 DEFAULT CHARSET=utf8 */;");
drupal_set_message('Taxonomy Title Table created sucessfully');
break;
}
}
function taxonomy_title_uninstall() {
db_query('DROP TABLE {taxonomy_title}');
}