From 0a02ceb2949fc17b68e429972a48874d606bdef9 Mon Sep 17 00:00:00 2001 From: dullbananas Date: Thu, 23 May 2024 06:48:51 -0700 Subject: [PATCH] fmt --- crates/db_schema/src/schema_setup.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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())), );