(&self, stmt: TableDropStatement)
| 67 | } |
| 68 | |
| 69 | pub async fn drop_table(&self, stmt: TableDropStatement) -> Result<(), DbErr> { |
| 70 | self.exec_stmt(stmt).await |
| 71 | } |
| 72 | |
| 73 | pub async fn rename_table(&self, stmt: TableRenameStatement) -> Result<(), DbErr> { |
| 74 | self.exec_stmt(stmt).await |