Returns a reference to the underlying database.
(&self)
| 69 | |
| 70 | /// Returns a reference to the underlying database. |
| 71 | pub fn db(&self) -> &Database { |
| 72 | &self.db |
| 73 | } |
| 74 | |
| 75 | async fn schema_version(db: &Database, operation: &str) -> Result<u32> { |
| 76 | let mut rows = db |
no outgoing calls