mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-24 21:15:28 +00:00
fix: make pinned_at column nullable (for real this time)
This commit is contained in:
@@ -185,8 +185,8 @@ export class Message extends BaseClass {
|
||||
@Column({ type: "text", nullable: true })
|
||||
nonce?: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
@CreateDateColumn()
|
||||
@Column()
|
||||
@CreateDateColumn({ nullable: true })
|
||||
pinned_at: Date | null;
|
||||
|
||||
get pinned(): boolean {
|
||||
|
||||
Reference in New Issue
Block a user