diff --git a/modules/account/back/models/account.json b/modules/account/back/models/account.json index 6c27846966..284f1b25e2 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 0fc3a91950..d4c0a5f255 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 +}