12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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;
- }
|