From 56931446eb7ecdce8bb42bb729a22765ab0f6e54 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 15 Oct 2009 14:34:07 +0000 Subject: - Patch #567572 by catch: remove taxonomy synonyms in favor of a future Field API based solution. --- modules/taxonomy/taxonomy.install | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'modules/taxonomy/taxonomy.install') diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install index 17749dc5a..736347485 100644 --- a/modules/taxonomy/taxonomy.install +++ b/modules/taxonomy/taxonomy.install @@ -93,39 +93,6 @@ function taxonomy_schema() { 'primary key' => array('tid', 'parent'), ); - $schema['taxonomy_term_synonym'] = array( - 'description' => 'Stores term synonyms.', - 'fields' => array( - 'tsid' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'description' => 'Primary Key: Unique term synonym ID.', - ), - 'tid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {taxonomy_term_data}.tid of the term.', - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The name of the synonym.', - ), - ), - 'indexes' => array( - 'tid' => array('tid'), - 'name_tid' => array('name', 'tid'), - ), - 'foreign keys' => array( - 'tid' => array('taxonomy_term_data' => 'tid'), - ), - 'primary key' => array('tsid'), - ); - $schema['taxonomy_vocabulary'] = array( 'description' => 'Stores vocabulary information.', 'fields' => array( -- cgit v1.2.3