Applies any pending migrations, the migration files are embedded in the binary.
(&self)
| 33 | |
| 34 | /// Applies any pending migrations, the migration files are embedded in the binary. |
| 35 | pub async fn run_migrations(&self) -> Result<(), anyhow::Error> { |
| 36 | sqlx::migrate!().run(&self.pool).await?; |
| 37 | Ok(()) |
| 38 | } |
| 39 | } |