1
0
Fork 0
mirror of https://github.com/muerwre/vk-tg-bot.git synced 2025-04-24 22:46:41 +07:00

fix author id column type
All checks were successful
Build & Publish / Build & Publish (push) Successful in 1m26s

This commit is contained in:
Fedor Katurov 2025-02-26 23:52:09 +07:00
parent ba3d274cab
commit 7055af3ccd

View file

@ -16,7 +16,7 @@ export class Like {
channel!: string;
@Column({ type: "text" })
text!: string;
@Column()
@Column({ type: "numeric" })
author!: number;
@CreateDateColumn()
createdAt!: Date;