You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
960 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "transactions",
  4. "info": {
  5. "name": "Transaction"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "product_order": {
  14. "type": "string"
  15. },
  16. "product_name": {
  17. "type": "string"
  18. },
  19. "product_quantity": {
  20. "type": "biginteger"
  21. },
  22. "product_price": {
  23. "type": "biginteger"
  24. },
  25. "product_color": {
  26. "type": "string"
  27. },
  28. "product_courier": {
  29. "type": "string"
  30. },
  31. "cust_name": {
  32. "type": "string"
  33. },
  34. "cust_telp": {
  35. "type": "string"
  36. },
  37. "cust_address": {
  38. "type": "string"
  39. },
  40. "note": {
  41. "type": "text"
  42. },
  43. "product_img": {
  44. "model": "file",
  45. "via": "related",
  46. "allowedTypes": [
  47. "images",
  48. "files",
  49. "videos"
  50. ],
  51. "plugin": "upload",
  52. "required": false
  53. }
  54. }
  55. }