mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-25 18:34:32 +02:00
Added vacuum to CLI and Python API
This commit is contained in:
parent
fd5829b27d
commit
231224ba1a
6 changed files with 40 additions and 0 deletions
|
|
@ -98,6 +98,9 @@ class Database:
|
|||
)
|
||||
)
|
||||
|
||||
def vacuum(self):
|
||||
self.conn.execute("VACUUM;")
|
||||
|
||||
|
||||
class Table:
|
||||
def __init__(self, db, name):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue