Open
Description
Feature request
Is your feature request related to a problem? Please describe.
Creating a table with multiple columns is pretty slow. Supporting batch POST
would save us a couple round trips and remedy that.
Describe the solution you'd like
Make POST
accept a list of objects in addition to a single object. e.g.:
POST /columns
[
{ "table_id": 123456, "name": "c1", "type": "text" },
{ "table_id": 123456, "name": "c2", "type": "text" }
]