fix: remove vcard support, waiting for better implementation

This commit is contained in:
canove
2020-10-07 17:46:57 -03:00
parent ffce591817
commit a21ccbc539
7 changed files with 34 additions and 119 deletions

View File

@@ -72,13 +72,6 @@ class Message extends Model<Message> {
@BelongsTo(() => Contact, "contactId")
contact: Contact;
@ForeignKey(() => Contact)
@Column
vcardContactId: number;
@BelongsTo(() => Contact, "vcardContactId")
vcardContact: Contact;
}
export default Message;