tripal_views_setup.install 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. function tripal_views_setup_schema(){
  3. $schema = array();
  4. $schema['tripal_views_setup'] = 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. 'base_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. 'setup_id' => array(
  49. 'description' => 'tripal setup id from tripal_views_setup table',
  50. 'type' => 'serial',
  51. 'unsigned' => TRUE,
  52. 'not null'=> TRUE,
  53. ),
  54. 'view_column' => array(
  55. 'description' => 'materialized view name and column',
  56. 'type' => 'varchar',
  57. 'length' => '255',
  58. 'not null' => TRUE,
  59. 'default' => '',
  60. ),
  61. 'chado_column' => array(
  62. 'description' => 'which chado table and column is to be linked up to materialized view in this serach',
  63. 'type' => 'varchar',
  64. 'length' => '255',
  65. 'not null' => TRUE,
  66. 'default' => '',
  67. ),
  68. ),
  69. 'unique_keys' => array(
  70. 'setup_id' => array('setup_id'),
  71. ),
  72. 'primary key' => array('setup_id'),
  73. );
  74. $schema['tripal_views_handlers'] = array(
  75. 'description' => 'in formation for views: column and views handler name',
  76. 'fields' => array(
  77. 'setup_id' => array(
  78. 'description' => 'which setup this is used by from tripal_views_setup table',
  79. 'type' => 'serial',
  80. 'unsigned' => TRUE,
  81. 'not null'=> TRUE,
  82. ),
  83. 'column_name' => array(
  84. 'description' => '',
  85. 'type' => 'varchar',
  86. 'length' => '255',
  87. 'not null' => TRUE,
  88. 'default' => '',
  89. ),
  90. 'handler_name' => array(
  91. 'description' => 'name of the views handler to be used for this particular setup',
  92. 'type' => 'varchar',
  93. 'length' => '255',
  94. 'not null' => TRUE,
  95. 'default' => '',
  96. ),
  97. ),
  98. );
  99. return $schema;
  100. }
  101. function tripal_views_setup_install(){
  102. drupal_install_schema('tripal_views_setup');
  103. }
  104. function tripal_views_setup_uninstall(){
  105. drupal_uninstall_schema('tripal_views_setup');
  106. }
  107. /*
  108. * NOTE: when updating schema for this module's tables
  109. * follow api of schema module, otherwise on uninstall
  110. * the tables will not be removed correctly
  111. *
  112. */