(&self, stmt: TableRenameStatement)
| 71 | } |
| 72 | |
| 73 | pub async fn rename_table(&self, stmt: TableRenameStatement) -> Result<(), DbErr> { |
| 74 | self.exec_stmt(stmt).await |
| 75 | } |
| 76 | |
| 77 | pub async fn truncate_table(&self, stmt: TableTruncateStatement) -> Result<(), DbErr> { |
| 78 | self.exec_stmt(stmt).await |