3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Add missing is_permanent column to SavedMessage entity

This commit is contained in:
Dragory 2018-11-24 14:22:44 +02:00
parent 7dd452f7dd
commit 07b9ca843b

View file

@ -30,4 +30,6 @@ export class SavedMessage {
@Column() posted_at: string;
@Column() deleted_at: string;
@Column() is_permanent: boolean;
}