(&self, stmt: ForeignKeyCreateStatement)
| 52 | } |
| 53 | |
| 54 | pub async fn create_foreign_key(&self, stmt: ForeignKeyCreateStatement) -> Result<(), DbErr> { |
| 55 | self.exec_stmt(stmt).await |
| 56 | } |
| 57 | |
| 58 | pub async fn create_type(&self, stmt: TypeCreateStatement) -> Result<(), DbErr> { |
| 59 | self.exec_stmt(stmt).await |