summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-15 14:34:07 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-15 14:34:07 +0000
commit56931446eb7ecdce8bb42bb729a22765ab0f6e54 (patch)
treea92740fa9acb394daf649526ddc2dfa12410d3da /modules/taxonomy/taxonomy.install
parentf42bca3bd4a7b97e103ddba3fdb4e403f7215b2a (diff)
downloadbrdo-56931446eb7ecdce8bb42bb729a22765ab0f6e54.tar.gz
brdo-56931446eb7ecdce8bb42bb729a22765ab0f6e54.tar.bz2
- Patch #567572 by catch: remove taxonomy synonyms in favor of a future Field API based solution.
Diffstat (limited to 'modules/taxonomy/taxonomy.install')
-rw-r--r--modules/taxonomy/taxonomy.install33
1 files changed, 0 insertions, 33 deletions
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(