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.

008_update_barcodes_table.log 960B

1234567891011121314151617181920212223242526272829303132333435
  1. PUT /columns/barcodes
  2. {"name":"barcodes2"}
  3. ===
  4. 200
  5. Content-Type: application/json
  6. Content-Length: 4
  7. true
  8. ===
  9. GET /columns/barcodes2
  10. ===
  11. 200
  12. Content-Type: application/json
  13. Content-Length: 284
  14. {"name":"barcodes2","type":"table","columns":[{"name":"id","type":"integer","pk":true},{"name":"product_id","type":"integer","fk":"products"},{"name":"hex","type":"varchar","length":255},{"name":"bin","type":"blob"},{"name":"ip_address","type":"varchar","length":15,"nullable":true}]}
  15. ===
  16. PUT /columns/barcodes2
  17. {"name":"barcodes"}
  18. ===
  19. 200
  20. Content-Type: application/json
  21. Content-Length: 4
  22. true
  23. ===
  24. GET /columns/barcodes
  25. ===
  26. 200
  27. Content-Type: application/json
  28. Content-Length: 283
  29. {"name":"barcodes","type":"table","columns":[{"name":"id","type":"integer","pk":true},{"name":"product_id","type":"integer","fk":"products"},{"name":"hex","type":"varchar","length":255},{"name":"bin","type":"blob"},{"name":"ip_address","type":"varchar","length":15,"nullable":true}]}