fix: make pinned_at column nullable

This commit is contained in:
CyberL1 2025-09-29 19:13:46 +02:00 committed by Rory&
parent ed426b31bf
commit 76db78570f

View File

@ -185,7 +185,7 @@ export class Message extends BaseClass {
@Column({ type: "text", nullable: true })
nonce?: string;
@Column()
@Column({ nullable: true })
@CreateDateColumn()
pinned_at: Date | null;