skip-for-sqlite: table (columns) cannot be altered online
===
PUT /columns/barcodes/hex
{"type":"clob"}
===
200
Content-Type: application/json; charset=utf-8
Content-Length: 4
true
===
GET /columns/barcodes/hex
===
200
Content-Type: application/json; charset=utf-8
Content-Length: 28
{"name":"hex","type":"clob"}
===
PUT /columns/barcodes/hex
{"type":"varchar","length":255}
===
200
Content-Type: application/json; charset=utf-8
Content-Length: 4
true
===
GET /columns/barcodes/hex
===
200
Content-Type: application/json; charset=utf-8
Content-Length: 44
{"name":"hex","type":"varchar","length":255}
|