updated api docs
This commit is contained in:
parent
e217d18007
commit
9de0ad3e82
@ -34,10 +34,9 @@ class Table(object):
|
|||||||
Drop the table from the database, deleting both the schema
|
Drop the table from the database, deleting both the schema
|
||||||
and all the contents within it.
|
and all the contents within it.
|
||||||
|
|
||||||
Note: the object will be in an unusable state after using this
|
Note: the object will raise an Exception if you use it after
|
||||||
command and should not be used again. If you want to re-create
|
dropping the table. If you want to re-create the table, make
|
||||||
the table, make sure to get a fresh instance from the
|
sure to get a fresh instance from the :py:class:`Database <dataset.Database>`.
|
||||||
:py:class:`Database <dataset.Database>`.
|
|
||||||
"""
|
"""
|
||||||
self._is_dropped = True
|
self._is_dropped = True
|
||||||
with self.database.lock:
|
with self.database.lock:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user