mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Rename _schemas to _internal, closes #1156
This commit is contained in:
parent
ebc7aa287c
commit
dcdfb2c301
9 changed files with 250 additions and 259 deletions
|
|
@ -134,8 +134,8 @@ async def inspect_(files, sqlite_extensions):
|
|||
app = Datasette([], immutables=files, sqlite_extensions=sqlite_extensions)
|
||||
data = {}
|
||||
for name, database in app.databases.items():
|
||||
if name == "_schemas":
|
||||
# Don't include the in-memory _schemas database
|
||||
if name == "_internal":
|
||||
# Don't include the in-memory _internal database
|
||||
continue
|
||||
counts = await database.table_counts(limit=3600 * 1000)
|
||||
data[name] = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue