12345678910111213141516171819202122232425 |
- POST /columns
-
- {"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}]}
- ===
- 200
- Content-Type: application/json
- Content-Length: 4
-
- true
- ===
- GET /columns/barcodes2
- ===
- 200
- Content-Type: application/json
- Content-Length: 284
-
- {"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}]}
- ===
- DELETE /columns/barcodes2
- ===
- 200
- Content-Type: application/json
- Content-Length: 4
-
- true
|