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.

009_update_barcodes_hex_type.log.skip 484B

1234567891011121314151617181920212223242526272829303132333435
  1. PUT /columns/barcodes/hex
  2. {"type":"clob"}
  3. ===
  4. 200
  5. Content-Type: application/json
  6. Content-Length: 4
  7. true
  8. ===
  9. GET /columns/barcodes/hex
  10. ===
  11. 200
  12. Content-Type: application/json
  13. Content-Length: 28
  14. {"name":"hex","type":"clob"}
  15. ===
  16. PUT /columns/barcodes/hex
  17. {"type":"varchar","length":255}
  18. ===
  19. 200
  20. Content-Type: application/json
  21. Content-Length: 4
  22. true
  23. ===
  24. GET /columns/barcodes/hex
  25. ===
  26. 200
  27. Content-Type: application/json
  28. Content-Length: 44
  29. {"name":"hex","type":"varchar","length":255}