|
@@ -483,7 +483,7 @@ function tripal_tripal_vocab_schema() {
|
|
|
'vocabulary' => array(
|
|
|
'description' => 'The short name for the vocabulary (e.g. SO, PATO, etc.).',
|
|
|
'type' => 'varchar',
|
|
|
- 'length' => 10,
|
|
|
+ 'length' => 128,
|
|
|
'not null' => TRUE,
|
|
|
),
|
|
|
'created' => array(
|
|
@@ -701,3 +701,16 @@ function tripal_tripal_bundle_variables_schema() {
|
|
|
|
|
|
return $schema;
|
|
|
}
|
|
|
+
|
|
|
+/**
|
|
|
+ * Change tripal_vocab.vocabulary to varchar(128)
|
|
|
+ */
|
|
|
+function tripal_update_7300() {
|
|
|
+ $spec = array(
|
|
|
+ 'description' => 'The short name for the vocabulary (e.g. SO, PATO, etc.).',
|
|
|
+ 'type' => 'varchar',
|
|
|
+ 'length' => 128,
|
|
|
+ 'not null' => TRUE
|
|
|
+ );
|
|
|
+ db_change_field('tripal_vocab', 'vocabulary', 'vocabulary',$spec);
|
|
|
+}
|