Naming rollback
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Joan Sanchez 2023-01-24 09:12:26 +01:00
parent 3076123c04
commit 0208b31f44
6 changed files with 14 additions and 14 deletions

View File

@ -1,9 +1,9 @@
{ {
"name": "MailAliasVnUser", "name": "MailAliasAccount",
"base": "VnModel", "base": "VnModel",
"options": { "options": {
"mysql": { "mysql": {
"table": "VnUser.mailAliasVnUser" "table": "account.mailAliasAccount"
} }
}, },
"properties": { "properties": {
@ -21,7 +21,7 @@
"user": { "user": {
"type": "belongsTo", "type": "belongsTo",
"model": "VnUser", "model": "VnUser",
"foreignKey": "VnUser" "foreignKey": "account"
} }
} }
} }

View File

@ -3,11 +3,11 @@
"base": "VnModel", "base": "VnModel",
"options": { "options": {
"mysql": { "mysql": {
"table": "VnUser.mailForward" "table": "account.mailForward"
} }
}, },
"properties": { "properties": {
"VnUser": { "account": {
"id": true "id": true
}, },
"forwardTo": { "forwardTo": {
@ -19,7 +19,7 @@
"user": { "user": {
"type": "belongsTo", "type": "belongsTo",
"model": "VnUser", "model": "VnUser",
"foreignKey": "VnUser" "foreignKey": "account"
} }
} }
} }

View File

@ -1,9 +1,9 @@
{ {
"name": "UserVnUser", "name": "UserAccount",
"base": "VnModel", "base": "VnModel",
"options": { "options": {
"mysql": { "mysql": {
"table": "VnUser.VnUser" "table": "account.account"
} }
}, },
"properties": { "properties": {
@ -19,8 +19,8 @@
}, },
"aliases": { "aliases": {
"type": "hasMany", "type": "hasMany",
"model": "MailAliasVnUser", "model": "MailAliasAccount",
"foreignKey": "VnUser" "foreignKey": "account"
} }
} }
} }

View File

@ -37,7 +37,7 @@
"model": "VnUser", "model": "VnUser",
"foreignKey": "userFk" "foreignKey": "userFk"
}, },
"VnUser": { "account": {
"type": "belongsTo", "type": "belongsTo",
"model": "VnUser", "model": "VnUser",
"foreignKey": "userFk" "foreignKey": "userFk"

View File

@ -116,7 +116,7 @@
"isRelevant": { "isRelevant": {
"type": "boolean" "type": "boolean"
}, },
"VnUseringVnUser": { "accountingAccount": {
"type": "string" "type": "string"
}, },
"created": { "created": {
@ -149,7 +149,7 @@
}, },
"relations": { "relations": {
"VnUser": { "account": {
"type": "belongsTo", "type": "belongsTo",
"model": "VnUser", "model": "VnUser",
"foreignKey": "id" "foreignKey": "id"

View File

@ -16,7 +16,7 @@
"type": "date", "type": "date",
"required": true "required": true
}, },
"isVnUserable": { "isAccountable": {
"type": "boolean" "type": "boolean"
}, },
"serie": { "serie": {