INTEGER, REAL, TEXT, BLOB, and ANY.
Defaults
- If you create a table without a primary key column, ZangTable automatically adds an
idcolumn as an integer primary key. - If you create a column without passing
column_type, ZangTable usesTEXT. - The API does not automatically add
created_atorupdated_atcolumns. Add those yourself if your app needs them.
Typical flow
- Create a table with initial columns.
- Add or rename columns through the column endpoints.
- Use indexes for fields that power list filters and sort views.