Browse Source

Added support for GBRowse links

E.Cannon 9 years ago
parent
commit
b613257142
1 changed files with 8 additions and 1 deletions
  1. 8 1
      blast_ui.install

+ 8 - 1
blast_ui.install

@@ -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;
-
 }
 
 /**