(&self, stmt: IndexDropStatement)
| 79 | } |
| 80 | |
| 81 | pub async fn drop_index(&self, stmt: IndexDropStatement) -> Result<(), DbErr> { |
| 82 | self.exec_stmt(stmt).await |
| 83 | } |
| 84 | |
| 85 | pub async fn drop_foreign_key(&self, stmt: ForeignKeyDropStatement) -> Result<(), DbErr> { |
| 86 | self.exec_stmt(stmt).await |