123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- function tripal_project_install() {
- drupal_install_schema('tripal_project');
- }
- function tripal_project_uninstall() {
- drupal_uninstall_schema('tripal_project');
- }
- function tripal_project_schema() {
-
- $schema['chado_project'] = array(
- 'fields' => array(
-
- 'nid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- ),
-
- 'vid' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- ),
-
- 'project_id' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- ),
- ),
- 'primary key' => array('nid', 'vid', 'project_id'),
- );
- return $schema;
- }
|