Skip to content
Snippets Groups Projects
Commit 0622402e authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #662322 by scor, andypost: remove the 'relations' column from...

- Patch #662322 by scor, andypost: remove the 'relations' column from taxonomy_schema(). It was already dropped in an update function.
parent cc55d294
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -37,7 +37,6 @@ function forum_enable() {
'machine_name' => 'forums',
'description' => t('Forum navigation vocabulary'),
'hierarchy' => 1,
'relations' => 0,
'module' => 'forum',
'weight' => -10,
);
......
......@@ -134,14 +134,6 @@ function taxonomy_schema() {
'description' => 'Description of the vocabulary.',
'translatable' => TRUE,
),
'relations' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
'description' => 'Whether or not related terms are enabled within the vocabulary. (0 = disabled, 1 = enabled)',
),
'hierarchy' => array(
'type' => 'int',
'unsigned' => TRUE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment