chore: format

This commit is contained in:
naskya 2024-05-19 19:56:51 +09:00
parent 64d7aa40b1
commit fdc46bcee7
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
2 changed files with 3 additions and 4 deletions

View file

@ -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" (

View file

@ -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"];