diff --git a/crates/db_schema/src/schema_setup.rs b/crates/db_schema/src/schema_setup.rs index f73a83f3e..7ce04abb6 100644 --- a/crates/db_schema/src/schema_setup.rs +++ b/crates/db_schema/src/schema_setup.rs @@ -182,7 +182,8 @@ pub fn run(options: Options) -> LemmyResult { .has_pending_migration(migrations()) .map_err(convert_err)? { - // The condition above implies that the migration that creates the previously_run_sql table was already run + // The condition above implies that the migration that creates the previously_run_sql table was + // already run let sql_unchanged = exists( previously_run_sql::table.filter(previously_run_sql::content.eq(replaceable_schema())), );