add notes

This commit is contained in:
syuilo 2025-10-08 17:19:57 +09:00
parent 0b642cf446
commit a8a0c1c1b6
1 changed files with 3 additions and 0 deletions

View File

@ -153,11 +153,14 @@ export class MiNoteDraft {
//#endregion
// 予約日時
// これがあるだけでは実際に予約されているかどうかはわからない
@Column('timestamp with time zone', {
nullable: true,
})
public scheduledAt: Date | null;
// scheduledAtに基づいて実際にスケジュールされているか
@Column('boolean', {
default: false,
})