|
@@ -67,11 +67,19 @@ function blast_ui_schema(){
|
|
|
'length' => 50,
|
|
|
'not null' => true,
|
|
|
'default' => 'link'
|
|
|
+ ),
|
|
|
+ 'gbrowse_path' => array(
|
|
|
+ 'description' => t('The gbrowse URL in the website of the target database.'),
|
|
|
+ 'type' => 'varchar',
|
|
|
+ 'length' => 1023,
|
|
|
+ 'not null' => true,
|
|
|
),
|
|
|
),
|
|
|
+
|
|
|
'indexes' => array(
|
|
|
'name' => array('name'),
|
|
|
),
|
|
|
+
|
|
|
'primary key' => array('nid'),
|
|
|
'unique keys' => array(
|
|
|
'nid' => array('nid'),
|
|
@@ -79,7 +87,6 @@ function blast_ui_schema(){
|
|
|
);
|
|
|
|
|
|
return $schema;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/**
|