You are here

taxonomy_title.install in Taxonomy Title 5

Same filename and directory in other branches
  1. 6 taxonomy_title.install
  2. 7 taxonomy_title.install

File

taxonomy_title.install
View source
<?php

// $Id$
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}');
}