fix tests

This commit is contained in:
Dennis Eichhorn 2023-09-26 03:03:31 +00:00
parent ee37e246be
commit f7ef503138
2 changed files with 14 additions and 12 deletions

View File

@ -1,33 +1,33 @@
{ {
"loanmgmt_loan": { "loanmgmt_loan": {
"name": "investmgmt_investment", "name": "loanmgmt_loan",
"fields": { "fields": {
"investmgmt_investment_id": { "loanmgmt_loan_id": {
"name": "investmgmt_investment_id", "name": "loanmgmt_loan_id",
"type": "INT", "type": "INT",
"null": false, "null": false,
"primary": true, "primary": true,
"autoincrement": true "autoincrement": true
}, },
"investmgmt_investment_title": { "loanmgmt_loan_title": {
"name": "investmgmt_investment_title", "name": "loanmgmt_loan_title",
"type": "VARCHAR(255)", "type": "VARCHAR(255)",
"null": false "null": false
}, },
"investmgmt_investment_description": { "loanmgmt_loan_description": {
"name": "investmgmt_investment_description", "name": "loanmgmt_loan_description",
"type": "TEXT", "type": "TEXT",
"null": false "null": false
}, },
"investmgmt_investment_created_by": { "loanmgmt_loan_created_by": {
"name": "investmgmt_investment_created_by", "name": "loanmgmt_loan_created_by",
"type": "INT", "type": "INT",
"null": false, "null": false,
"foreignTable": "account", "foreignTable": "account",
"foreignKey": "account_id" "foreignKey": "account_id"
}, },
"investmgmt_investment_unit": { "loanmgmt_loan_unit": {
"name": "investmgmt_investment_unit", "name": "loanmgmt_loan_unit",
"type": "INT", "type": "INT",
"default": null, "default": null,
"null": true, "null": true,

View File

@ -21,7 +21,9 @@
"SupplierManagement": "*" "SupplierManagement": "*"
}, },
"providing": { "providing": {
"Navigation": "*" "Admin": "*",
"Navigation": "*",
"Organization": "*"
}, },
"load": [ "load": [
{ {