oms-LoanManagement/Admin/Install/db.json
Dennis Eichhorn f7ef503138 fix tests
2023-09-26 03:03:31 +00:00

39 lines
1.2 KiB
JSON
Executable File

{
"loanmgmt_loan": {
"name": "loanmgmt_loan",
"fields": {
"loanmgmt_loan_id": {
"name": "loanmgmt_loan_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"loanmgmt_loan_title": {
"name": "loanmgmt_loan_title",
"type": "VARCHAR(255)",
"null": false
},
"loanmgmt_loan_description": {
"name": "loanmgmt_loan_description",
"type": "TEXT",
"null": false
},
"loanmgmt_loan_created_by": {
"name": "loanmgmt_loan_created_by",
"type": "INT",
"null": false,
"foreignTable": "account",
"foreignKey": "account_id"
},
"loanmgmt_loan_unit": {
"name": "loanmgmt_loan_unit",
"type": "INT",
"default": null,
"null": true,
"foreignTable": "unit",
"foreignKey": "unit_id"
}
}
}
}