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 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. ===
  2. PUT /columns/barcodes
  3. {"name":"barcodes2"}
  4. ===
  5. 200
  6. Content-Type: application/json; charset=utf-8
  7. Content-Length: 4
  8. true
  9. ===
  10. GET /columns/barcodes2
  11. ===
  12. 200
  13. Content-Type: application/json; charset=utf-8
  14. Content-Length: 284
  15. {"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}]}
  16. ===
  17. PUT /columns/barcodes2
  18. {"name":"barcodes"}
  19. ===
  20. 200
  21. Content-Type: application/json; charset=utf-8
  22. Content-Length: 4
  23. true
  24. ===
  25. GET /columns/barcodes
  26. ===
  27. 200
  28. Content-Type: application/json; charset=utf-8
  29. Content-Length: 283
  30. {"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}]}