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
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

004_update_barcodes_id_column.log.skip 504B

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