Blame view

common/models/order.json 401 Bytes
cf8b0fb9   Nung Poti   template master
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
{
  "name": "order",
  "base": "PersistedModel",
  "idInjection": true,
  "options": {
    "validateUpsert": true
  },
  "properties": {
    "id": {
      "type": "number"
    },
    "customer_id": {
      "type": "string"
    },
    "item_id": {
      "type": "string"
    },
    "quanlity": {
      "type": "number"
    }
  },
  "validations": [],
  "relations": {},
  "acls": [],
  "methods": {}
}