b2a2b9d2
Suraputt Suntimitr
email
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
"name": "emails",
"plural": "email",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true,
"mysql": {
"table": "scmail"
}
},
"properties": {
"id": {
"type": "number",
"id": true
},
"app_id": {
"type": "number"
},
"email": {
"type": "string"
},
"created_at": {
"type": "date"
},
"modified_at": {
"type": "date"
},
"deleted_at": {
"type": "date"
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": {}
}
|