(&self, stmt: TableAlterStatement)
| 63 | /// Schema Mutation |
| 64 | impl SchemaManager<'_> { |
| 65 | pub async fn alter_table(&self, stmt: TableAlterStatement) -> Result<(), DbErr> { |
| 66 | self.exec_stmt(stmt).await |
| 67 | } |
| 68 | |
| 69 | pub async fn drop_table(&self, stmt: TableDropStatement) -> Result<(), DbErr> { |
| 70 | self.exec_stmt(stmt).await |