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
All checks were successful
Build & Publish / Build & Publish (push) Successful in 1m26s
This commit is contained in:
parent
ba3d274cab
commit
7055af3ccd
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ export class Like {
|
||||||
channel!: string;
|
channel!: string;
|
||||||
@Column({ type: "text" })
|
@Column({ type: "text" })
|
||||||
text!: string;
|
text!: string;
|
||||||
@Column()
|
@Column({ type: "numeric" })
|
||||||
author!: number;
|
author!: number;
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
createdAt!: Date;
|
createdAt!: Date;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue