db_schema_whitelist.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "oauth_consumer": {
  3. "column": {
  4. "entity_id": true,
  5. "created_at": true,
  6. "updated_at": true,
  7. "name": true,
  8. "key": true,
  9. "secret": true,
  10. "callback_url": true,
  11. "rejected_callback_url": true
  12. },
  13. "index": {
  14. "OAUTH_CONSUMER_CREATED_AT": true,
  15. "OAUTH_CONSUMER_UPDATED_AT": true
  16. },
  17. "constraint": {
  18. "PRIMARY": true,
  19. "OAUTH_CONSUMER_KEY": true,
  20. "OAUTH_CONSUMER_SECRET": true
  21. }
  22. },
  23. "oauth_token": {
  24. "column": {
  25. "entity_id": true,
  26. "consumer_id": true,
  27. "admin_id": true,
  28. "customer_id": true,
  29. "type": true,
  30. "token": true,
  31. "secret": true,
  32. "verifier": true,
  33. "callback_url": true,
  34. "revoked": true,
  35. "authorized": true,
  36. "user_type": true,
  37. "created_at": true
  38. },
  39. "index": {
  40. "OAUTH_TOKEN_CONSUMER_ID": true
  41. },
  42. "constraint": {
  43. "PRIMARY": true,
  44. "OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID": true,
  45. "OAUTH_TOKEN_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID": true,
  46. "OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID": true,
  47. "OAUTH_TOKEN_TOKEN": true
  48. }
  49. },
  50. "oauth_nonce": {
  51. "column": {
  52. "nonce": true,
  53. "timestamp": true,
  54. "consumer_id": true
  55. },
  56. "constraint": {
  57. "OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID": true,
  58. "OAUTH_NONCE_NONCE_CONSUMER_ID": true
  59. },
  60. "index": {
  61. "OAUTH_NONCE_TIMESTAMP": true
  62. }
  63. },
  64. "integration": {
  65. "column": {
  66. "integration_id": true,
  67. "name": true,
  68. "email": true,
  69. "endpoint": true,
  70. "status": true,
  71. "consumer_id": true,
  72. "created_at": true,
  73. "updated_at": true,
  74. "setup_type": true,
  75. "identity_link_url": true
  76. },
  77. "constraint": {
  78. "PRIMARY": true,
  79. "INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID": true,
  80. "INTEGRATION_NAME": true,
  81. "INTEGRATION_CONSUMER_ID": true
  82. }
  83. },
  84. "oauth_token_request_log": {
  85. "column": {
  86. "log_id": true,
  87. "user_name": true,
  88. "user_type": true,
  89. "failures_count": true,
  90. "lock_expires_at": true
  91. },
  92. "constraint": {
  93. "PRIMARY": true,
  94. "OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE": true
  95. }
  96. }
  97. }