New hidden: True option for table metadat, closes #239

This commit is contained in:
Simon Willison 2018-04-25 20:42:57 -07:00
commit 02ee31c8b4
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52
4 changed files with 31 additions and 10 deletions

View file

@ -142,6 +142,24 @@ used for the link label with the ``label_column`` property::
}
}
Hiding tables
-------------
You can hide tables from the database listing view (in the same way that FTS and
Spatialite tables are automatically hidden) using ``"hidden": true``::
{
"databases": {
"database1": {
"tables": {
"example_table": {
"hidden": true
}
}
}
}
}
Generating a metadata skeleton
------------------------------