34 lines
485 B
JSON
34 lines
485 B
JSON
|
{
|
||
|
"name": "SignInLog",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "account.signInLog"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"creationDate": {
|
||
|
"type": "date"
|
||
|
},
|
||
|
"userFk": {
|
||
|
"type": "number"
|
||
|
},
|
||
|
"ip": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"user": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "VnUser",
|
||
|
"foreignKey": "userFk"
|
||
|
}
|
||
|
},
|
||
|
"scope": {
|
||
|
"order": ["creationDate DESC", "id DESC"]
|
||
|
}
|
||
|
}
|