(&self, stmt: TableTruncateStatement)
| 75 | } |
| 76 | |
| 77 | pub async fn truncate_table(&self, stmt: TableTruncateStatement) -> Result<(), DbErr> { |
| 78 | self.exec_stmt(stmt).await |
| 79 | } |
| 80 | |
| 81 | pub async fn drop_index(&self, stmt: IndexDropStatement) -> Result<(), DbErr> { |
| 82 | self.exec_stmt(stmt).await |