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

#4 added text column to event

This commit is contained in:
Fedor Katurov 2021-05-04 17:36:08 +07:00
parent f75e3068a0
commit a78fc0bfe3

View file

@ -25,4 +25,6 @@ export class Event {
createdAt: Date;
@UpdateDateColumn()
updatedAt: Date;
@Column({ type: "text", default: "", nullable: false })
text: string;
}