tripal_views_integration.install 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?php
  2. function tripal_views_integration_schema(){
  3. $schema = array();
  4. $schema['tripal_views_integration'] = array(
  5. 'description' => 'contains the setupes, their materialized view id and base table name that was used.',
  6. 'fields' => array(
  7. 'setup_id' => array(
  8. 'description' => 'the id of the setup',
  9. 'type' => 'serial',
  10. 'unsigned' => TRUE,
  11. 'not null' => TRUE,
  12. ),
  13. 'mview_id' => array(
  14. 'description' => 'the materialized view used for this setup',
  15. 'type' => 'int',
  16. 'unsigned' => TRUE,
  17. ),
  18. 'chado_table_name' => array(
  19. 'description' => 'the base table name to be used when using this setup',
  20. 'type' => 'varchar',
  21. 'length' => 255,
  22. 'not null' => TRUE,
  23. 'default' => '',
  24. ),
  25. 'name' => array(
  26. 'description' => 'Human readable name of this setup',
  27. 'type' => 'varchar',
  28. 'length' => 255,
  29. 'not null' => TRUE,
  30. 'default' => '',
  31. ),
  32. 'description' => array(
  33. 'description' => 'description of this row',
  34. 'type' => 'varchar',
  35. 'length' => 255,
  36. 'not null' => TRUE,
  37. 'default' => '',
  38. ),
  39. ),
  40. 'unique_keys' => array(
  41. 'setup_id' => array('setup_id'),
  42. ),
  43. 'primary key' => array('setup_id'),
  44. );
  45. $schema['tripal_mviews_join'] = array(
  46. 'description' => 'which materialzed views and chado tables to join in a given setup',
  47. 'fields' => array(
  48. 'mview_join_id' => array(
  49. 'description' => 'the id of the join',
  50. 'type' => 'serial',
  51. 'unsigned' => TRUE,
  52. 'not null' => TRUE,
  53. ),
  54. 'setup_id' => array(
  55. 'description' => 'tripal setup id from tripal_views_integration table',
  56. 'type' => 'int',
  57. 'unsigned' => TRUE,
  58. 'not null'=> TRUE,
  59. ),
  60. 'view_table' => array(
  61. 'description' => 'materialized view table name',
  62. 'type' => 'varchar',
  63. 'length' => '255',
  64. 'not null' => TRUE,
  65. 'default' => '',
  66. ),
  67. 'view_column' => array(
  68. 'description' => 'column of materialized view table (mview_table)',
  69. 'type' => 'varchar',
  70. 'length' => '255',
  71. 'not null' => TRUE,
  72. 'default' => '',
  73. ),
  74. 'chado_table_join' => array(
  75. 'description' => 'on which chado table to join to materialized view in this serach',
  76. 'type' => 'varchar',
  77. 'length' => '255',
  78. 'not null' => TRUE,
  79. 'default' => '',
  80. ),
  81. 'chado_column' => array(
  82. 'description' => 'chado table (above) column to join on materialized view in this serach',
  83. 'type' => 'varchar',
  84. 'length' => '255',
  85. 'not null' => TRUE,
  86. 'default' => '',
  87. ),
  88. ),
  89. 'unique_keys' => array(
  90. 'setup_id' => array('mview_join_id'),
  91. ),
  92. 'primary key' => array('mview_join_id'),
  93. );
  94. $schema['tripal_views_handlers'] = array(
  95. 'description' => 'in formation for views: column and views handler name',
  96. 'fields' => array(
  97. 'handler_id' => array(
  98. 'description' => 'the id of the handler',
  99. 'type' => 'serial',
  100. 'unsigned' => TRUE,
  101. 'not null' => TRUE,
  102. ),
  103. 'setup_id' => array(
  104. 'description' => 'which setup this is used by from tripal_views_integration table',
  105. 'type' => 'int',
  106. 'unsigned' => TRUE,
  107. 'not null'=> TRUE,
  108. ),
  109. 'column_name' => array(
  110. 'description' => '',
  111. 'type' => 'varchar',
  112. 'length' => '255',
  113. 'not null' => TRUE,
  114. 'default' => '',
  115. ),
  116. 'handler_filter' => array(
  117. 'description' => 'identifier of the handler filter to be used for this column',
  118. 'type' => 'varchar',
  119. 'length' => '255',
  120. 'not null' => TRUE,
  121. 'default' => '',
  122. ),
  123. 'handler_field' => array(
  124. 'description' => 'identifier of the handler field to be used for this column',
  125. 'type' => 'varchar',
  126. 'length' => '255',
  127. 'not null' => TRUE,
  128. 'default' => '',
  129. ),
  130. ),
  131. 'unique_keys' => array(
  132. 'setup_id' => array('handler_id'),
  133. ),
  134. 'primary key' => array('handler_id'),
  135. );
  136. return $schema;
  137. }
  138. function tripal_views_integration_install(){
  139. drupal_install_schema('tripal_views_integration');
  140. }
  141. function tripal_views_integration_uninstall(){
  142. drupal_uninstall_schema('tripal_views_integration');
  143. }
  144. /*
  145. * NOTE: when updating schema for this module's tables
  146. * follow api of schema module, otherwise on uninstall
  147. * the tables will not be removed correctly
  148. *
  149. */