(&self, stmt: ForeignKeyDropStatement)
| 83 | } |
| 84 | |
| 85 | pub async fn drop_foreign_key(&self, stmt: ForeignKeyDropStatement) -> Result<(), DbErr> { |
| 86 | self.exec_stmt(stmt).await |
| 87 | } |
| 88 | |
| 89 | pub async fn alter_type(&self, stmt: TypeAlterStatement) -> Result<(), DbErr> { |
| 90 | self.exec_stmt(stmt).await |