Remove the given Table object from this MetaData.
(self, table: Table)
| 5625 | self._fk_memos.clear() |
| 5626 | |
| 5627 | def remove(self, table: Table) -> None: |
| 5628 | """Remove the given Table object from this MetaData.""" |
| 5629 | |
| 5630 | self._remove_table(table.name, table.schema) |
| 5631 | |
| 5632 | @property |
| 5633 | def sorted_tables(self) -> List[Table]: |