(&self, table: T)
| 98 | /// Schema Inspection. |
| 99 | impl SchemaManager<'_> { |
| 100 | pub async fn has_table<T>(&self, table: T) -> Result<bool, DbErr> |
| 101 | where |
| 102 | T: AsRef<str>, |
| 103 | { |
| 104 | has_table(&self.conn, table).await |
| 105 | } |
| 106 | |
| 107 | pub async fn has_column<T, C>(&self, _table: T, _column: C) -> Result<bool, DbErr> |
| 108 | where |