diff --git a/packages/backend/src/migration/1714728200194-create-scheduled-note.ts b/packages/backend/src/migration/1714728200194-create-scheduled-note.ts
index e081085a88..45b724c352 100644
--- a/packages/backend/src/migration/1714728200194-create-scheduled-note.ts
+++ b/packages/backend/src/migration/1714728200194-create-scheduled-note.ts
@@ -1,8 +1,6 @@
 import type { MigrationInterface, QueryRunner } from "typeorm";
 
-export class CreateScheduledNote1714728200194
-	implements MigrationInterface
-{
+export class CreateScheduledNote1714728200194 implements MigrationInterface {
 	public async up(queryRunner: QueryRunner): Promise<void> {
 		await queryRunner.query(
 			`CREATE TABLE "scheduled_note" (
diff --git a/packages/backend/src/models/entities/scheduled-note.ts b/packages/backend/src/models/entities/scheduled-note.ts
index 9dc196caea..6c0b1296d8 100644
--- a/packages/backend/src/models/entities/scheduled-note.ts
+++ b/packages/backend/src/models/entities/scheduled-note.ts
@@ -20,7 +20,8 @@ export class ScheduledNote {
 	@Index()
 	@Column({
 		...id(),
-		comment: "The ID of the temporarily created note that corresponds to the schedule.",
+		comment:
+			"The ID of the temporarily created note that corresponds to the schedule.",
 	})
 	public noteId: Note["id"];