Update NoteDraft.ts

This commit is contained in:
syuilo 2025-09-24 09:07:20 +09:00
parent 0f8c068e84
commit ccb78b3bfc
1 changed files with 6 additions and 0 deletions

View File

@ -153,6 +153,12 @@ export class MiNoteDraft {
// ここまで追加
// 予約投稿
@Column('timestamp with time zone', {
nullable: true,
})
public scheduledAt: Date | null;
constructor(data: Partial<MiNoteDraft>) {
if (data == null) return;