api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
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.

006_update_events_visitors_pk.log.skip 830B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. PUT /columns/events/visitors
  2. {"pk":true}
  3. ===
  4. 200
  5. Content-Type: application/json
  6. Content-Length: 4
  7. true
  8. ===
  9. GET /columns/events/visitors
  10. ===
  11. 200
  12. Content-Type: application/json
  13. Content-Length: 46
  14. {"name":"visitors","type":"integer","pk":true}
  15. ===
  16. GET /columns/events/id
  17. ===
  18. 200
  19. Content-Type: application/json
  20. Content-Length: 30
  21. {"name":"id","type":"integer"}
  22. ===
  23. PUT /columns/events/visitors
  24. {"pk":false}
  25. ===
  26. 200
  27. Content-Type: application/json
  28. Content-Length: 4
  29. true
  30. ===
  31. GET /columns/events/visitors
  32. ===
  33. 200
  34. Content-Type: application/json
  35. Content-Length: 36
  36. {"name":"visitors","type":"integer"}
  37. ===
  38. PUT /columns/events/id
  39. {"pk":true}
  40. ===
  41. 200
  42. Content-Type: application/json
  43. Content-Length: 4
  44. true
  45. ===
  46. GET /columns/events/id
  47. ===
  48. 200
  49. Content-Type: application/json
  50. Content-Length: 40
  51. {"name":"id","type":"integer","pk":true}