db_schema_whitelist.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "wishlist": {
  3. "column": {
  4. "wishlist_id": true,
  5. "customer_id": true,
  6. "shared": true,
  7. "sharing_code": true,
  8. "updated_at": true
  9. },
  10. "index": {
  11. "WISHLIST_SHARED": true
  12. },
  13. "constraint": {
  14. "PRIMARY": true,
  15. "WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID": true,
  16. "WISHLIST_CUSTOMER_ID": true
  17. }
  18. },
  19. "wishlist_item": {
  20. "column": {
  21. "wishlist_item_id": true,
  22. "wishlist_id": true,
  23. "product_id": true,
  24. "store_id": true,
  25. "added_at": true,
  26. "description": true,
  27. "qty": true
  28. },
  29. "index": {
  30. "WISHLIST_ITEM_WISHLIST_ID": true,
  31. "WISHLIST_ITEM_PRODUCT_ID": true,
  32. "WISHLIST_ITEM_STORE_ID": true
  33. },
  34. "constraint": {
  35. "PRIMARY": true,
  36. "WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID": true,
  37. "WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID": true,
  38. "WISHLIST_ITEM_STORE_ID_STORE_STORE_ID": true
  39. }
  40. },
  41. "wishlist_item_option": {
  42. "column": {
  43. "option_id": true,
  44. "wishlist_item_id": true,
  45. "product_id": true,
  46. "code": true,
  47. "value": true
  48. },
  49. "constraint": {
  50. "PRIMARY": true,
  51. "FK_A014B30B04B72DD0EAB3EECD779728D6": true,
  52. "WISHLIST_ITEM_OPTION_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID": true
  53. }
  54. }
  55. }