collab: Remove unused parameter to run_database_migrations (#15883)

This PR removes the unused `ignore_checksum_mismatch` parameter to
`run_database_migrations`.

We were always passing `false`, which meant the behavior didn't need to
be parameterized.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-08-06 17:31:52 -04:00 committed by GitHub
parent 7f6d0919c9
commit b19f85f9b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 6 deletions

View file

@ -220,7 +220,7 @@ async fn setup_app_database(config: &Config) -> Result<()> {
Path::new(default_migrations)
});
let migrations = run_database_migrations(db.options(), migrations_path, false).await?;
let migrations = run_database_migrations(db.options(), migrations_path).await?;
for (migration, duration) in migrations {
log::info!(
"Migrated {} {} {:?}",
@ -265,7 +265,7 @@ async fn setup_llm_database(config: &Config) -> Result<()> {
Path::new(default_migrations)
});
let migrations = run_database_migrations(db.options(), migrations_path, false).await?;
let migrations = run_database_migrations(db.options(), migrations_path).await?;
for (migration, duration) in migrations {
log::info!(
"Migrated {} {} {:?}",