db_schema_whitelist.json 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. {
  2. "review_entity": {
  3. "column": {
  4. "entity_id": true,
  5. "entity_code": true
  6. },
  7. "constraint": {
  8. "PRIMARY": true
  9. }
  10. },
  11. "review_status": {
  12. "column": {
  13. "status_id": true,
  14. "status_code": true
  15. },
  16. "constraint": {
  17. "PRIMARY": true
  18. }
  19. },
  20. "review": {
  21. "column": {
  22. "review_id": true,
  23. "created_at": true,
  24. "entity_id": true,
  25. "entity_pk_value": true,
  26. "status_id": true
  27. },
  28. "index": {
  29. "REVIEW_ENTITY_ID": true,
  30. "REVIEW_STATUS_ID": true,
  31. "REVIEW_ENTITY_PK_VALUE": true
  32. },
  33. "constraint": {
  34. "PRIMARY": true,
  35. "REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID": true,
  36. "REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID": true
  37. }
  38. },
  39. "review_detail": {
  40. "column": {
  41. "detail_id": true,
  42. "review_id": true,
  43. "store_id": true,
  44. "title": true,
  45. "detail": true,
  46. "nickname": true,
  47. "customer_id": true
  48. },
  49. "index": {
  50. "REVIEW_DETAIL_REVIEW_ID": true,
  51. "REVIEW_DETAIL_STORE_ID": true,
  52. "REVIEW_DETAIL_CUSTOMER_ID": true
  53. },
  54. "constraint": {
  55. "PRIMARY": true,
  56. "REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID": true,
  57. "REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID": true,
  58. "REVIEW_DETAIL_STORE_ID_STORE_STORE_ID": true
  59. }
  60. },
  61. "review_entity_summary": {
  62. "column": {
  63. "primary_id": true,
  64. "entity_pk_value": true,
  65. "entity_type": true,
  66. "reviews_count": true,
  67. "rating_summary": true,
  68. "store_id": true
  69. },
  70. "index": {
  71. "REVIEW_ENTITY_SUMMARY_STORE_ID": true
  72. },
  73. "constraint": {
  74. "PRIMARY": true,
  75. "REVIEW_ENTITY_SUMMARY_STORE_ID_STORE_STORE_ID": true
  76. }
  77. },
  78. "review_store": {
  79. "column": {
  80. "review_id": true,
  81. "store_id": true
  82. },
  83. "index": {
  84. "REVIEW_STORE_STORE_ID": true
  85. },
  86. "constraint": {
  87. "PRIMARY": true,
  88. "REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID": true,
  89. "REVIEW_STORE_STORE_ID_STORE_STORE_ID": true
  90. }
  91. },
  92. "rating_entity": {
  93. "column": {
  94. "entity_id": true,
  95. "entity_code": true
  96. },
  97. "constraint": {
  98. "PRIMARY": true,
  99. "RATING_ENTITY_ENTITY_CODE": true
  100. }
  101. },
  102. "rating": {
  103. "column": {
  104. "rating_id": true,
  105. "entity_id": true,
  106. "rating_code": true,
  107. "position": true,
  108. "is_active": true
  109. },
  110. "index": {
  111. "RATING_ENTITY_ID": true
  112. },
  113. "constraint": {
  114. "PRIMARY": true,
  115. "RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID": true,
  116. "RATING_RATING_CODE": true
  117. }
  118. },
  119. "rating_option": {
  120. "column": {
  121. "option_id": true,
  122. "rating_id": true,
  123. "code": true,
  124. "value": true,
  125. "position": true
  126. },
  127. "index": {
  128. "RATING_OPTION_RATING_ID": true
  129. },
  130. "constraint": {
  131. "PRIMARY": true,
  132. "RATING_OPTION_RATING_ID_RATING_RATING_ID": true
  133. }
  134. },
  135. "rating_option_vote": {
  136. "column": {
  137. "vote_id": true,
  138. "option_id": true,
  139. "remote_ip": true,
  140. "remote_ip_long": true,
  141. "customer_id": true,
  142. "entity_pk_value": true,
  143. "rating_id": true,
  144. "review_id": true,
  145. "percent": true,
  146. "value": true
  147. },
  148. "index": {
  149. "RATING_OPTION_VOTE_OPTION_ID": true
  150. },
  151. "constraint": {
  152. "PRIMARY": true,
  153. "RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID": true,
  154. "RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID": true
  155. }
  156. },
  157. "rating_option_vote_aggregated": {
  158. "column": {
  159. "primary_id": true,
  160. "rating_id": true,
  161. "entity_pk_value": true,
  162. "vote_count": true,
  163. "vote_value_sum": true,
  164. "percent": true,
  165. "percent_approved": true,
  166. "store_id": true
  167. },
  168. "index": {
  169. "RATING_OPTION_VOTE_AGGREGATED_RATING_ID": true,
  170. "RATING_OPTION_VOTE_AGGREGATED_STORE_ID": true
  171. },
  172. "constraint": {
  173. "PRIMARY": true,
  174. "RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID": true,
  175. "RATING_OPTION_VOTE_AGGREGATED_STORE_ID_STORE_STORE_ID": true
  176. }
  177. },
  178. "rating_store": {
  179. "column": {
  180. "rating_id": true,
  181. "store_id": true
  182. },
  183. "index": {
  184. "RATING_STORE_STORE_ID": true
  185. },
  186. "constraint": {
  187. "PRIMARY": true,
  188. "RATING_STORE_STORE_ID_STORE_STORE_ID": true,
  189. "RATING_STORE_RATING_ID_RATING_RATING_ID": true
  190. }
  191. },
  192. "rating_title": {
  193. "column": {
  194. "rating_id": true,
  195. "store_id": true,
  196. "value": true
  197. },
  198. "index": {
  199. "RATING_TITLE_STORE_ID": true
  200. },
  201. "constraint": {
  202. "PRIMARY": true,
  203. "RATING_TITLE_RATING_ID_RATING_RATING_ID": true,
  204. "RATING_TITLE_STORE_ID_STORE_STORE_ID": true
  205. }
  206. }
  207. }