diff -r 07239de796bb -r e756a8c72c3d cms/drupal/modules/simpletest/tests/taxonomy_test.install --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cms/drupal/modules/simpletest/tests/taxonomy_test.install Fri Sep 08 12:04:06 2017 +0200 @@ -0,0 +1,34 @@ + 'Stores term antonym.', + 'fields' => array( + '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 antonym.', + ), + ), + 'primary key' => array('tid'), + ); + + return $schema; +}