mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
New hidden: True option for table metadat, closes #239
This commit is contained in:
parent
d3a0069c54
commit
02ee31c8b4
4 changed files with 31 additions and 10 deletions
|
|
@ -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
|
||||
------------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue