From 04520cafcf2855ad8a8b6e915be057a2bf27eaaf Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 17 Jun 2024 14:26:40 +0200 Subject: [PATCH] feat(Salix): refs #6427 #6427 Add loggable to models --- modules/account/back/models/account.json | 3 +++ modules/client/back/models/client-unpaid.json | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/account/back/models/account.json b/modules/account/back/models/account.json index 6c2784696..284f1b25e 100644 --- a/modules/account/back/models/account.json +++ b/modules/account/back/models/account.json @@ -1,6 +1,9 @@ { "name": "Account", "base": "VnModel", + "mixins": { + "Loggable": true + }, "options": { "mysql": { "table": "account.account" diff --git a/modules/client/back/models/client-unpaid.json b/modules/client/back/models/client-unpaid.json index 0fc3a9195..d4c0a5f25 100644 --- a/modules/client/back/models/client-unpaid.json +++ b/modules/client/back/models/client-unpaid.json @@ -1,6 +1,10 @@ { "name": "ClientUnpaid", "base": "VnModel", + + "mixins": { + "Loggable": true + }, "options": { "mysql": { "table": "clientUnpaid" @@ -25,4 +29,4 @@ "foreignKey": "clientFk" } } -} \ No newline at end of file +}