db_schema_whitelist.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "cms_block": {
  3. "column": {
  4. "block_id": true,
  5. "title": true,
  6. "identifier": true,
  7. "content": true,
  8. "creation_time": true,
  9. "update_time": true,
  10. "is_active": true
  11. },
  12. "index": {
  13. "CMS_BLOCK_TITLE_IDENTIFIER_CONTENT": true
  14. },
  15. "constraint": {
  16. "PRIMARY": true
  17. }
  18. },
  19. "cms_block_store": {
  20. "column": {
  21. "block_id": true,
  22. "store_id": true
  23. },
  24. "index": {
  25. "CMS_BLOCK_STORE_STORE_ID": true
  26. },
  27. "constraint": {
  28. "PRIMARY": true,
  29. "CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID": true,
  30. "CMS_BLOCK_STORE_STORE_ID_STORE_STORE_ID": true
  31. }
  32. },
  33. "cms_page": {
  34. "column": {
  35. "page_id": true,
  36. "title": true,
  37. "page_layout": true,
  38. "meta_keywords": true,
  39. "meta_description": true,
  40. "identifier": true,
  41. "content_heading": true,
  42. "content": true,
  43. "creation_time": true,
  44. "update_time": true,
  45. "is_active": true,
  46. "sort_order": true,
  47. "layout_update_xml": true,
  48. "custom_theme": true,
  49. "custom_root_template": true,
  50. "custom_layout_update_xml": true,
  51. "custom_theme_from": true,
  52. "custom_theme_to": true,
  53. "meta_title": true
  54. },
  55. "index": {
  56. "CMS_PAGE_IDENTIFIER": true,
  57. "CMS_PAGE_TITLE_META_KEYWORDS_META_DESCRIPTION_IDENTIFIER_CONTENT": true
  58. },
  59. "constraint": {
  60. "PRIMARY": true
  61. }
  62. },
  63. "cms_page_store": {
  64. "column": {
  65. "page_id": true,
  66. "store_id": true
  67. },
  68. "index": {
  69. "CMS_PAGE_STORE_STORE_ID": true
  70. },
  71. "constraint": {
  72. "PRIMARY": true,
  73. "CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID": true,
  74. "CMS_PAGE_STORE_STORE_ID_STORE_STORE_ID": true
  75. }
  76. }
  77. }