Made sqlite introspection also show views like other backends
Refs #6730.
This commit is contained in:
parent
349c12d3f5
commit
2af58a2cef
|
@ -59,7 +59,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection):
|
|||
# generation.
|
||||
cursor.execute("""
|
||||
SELECT name FROM sqlite_master
|
||||
WHERE type='table' AND NOT name='sqlite_sequence'
|
||||
WHERE type in ('table', 'view') AND NOT name='sqlite_sequence'
|
||||
ORDER BY name""")
|
||||
return [row[0] for row in cursor.fetchall()]
|
||||
|
||||
|
|
Loading…
Reference in New Issue