-
Notifications
You must be signed in to change notification settings - Fork 1
/
1681412244_created_stock.js
89 lines (87 loc) · 1.9 KB
/
1681412244_created_stock.js
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
migrate((db) => {
const collection = new Collection({
"id": "9getj2tkvnpuzr2",
"created": "2023-04-13 18:57:24.671Z",
"updated": "2023-04-13 18:57:24.671Z",
"name": "stock",
"type": "base",
"system": false,
"schema": [
{
"system": false,
"id": "8jo8hhzh",
"name": "supply_name",
"type": "text",
"required": true,
"unique": false,
"options": {
"min": 1,
"max": null,
"pattern": ""
}
},
{
"system": false,
"id": "o0eigi88",
"name": "supply_type",
"type": "text",
"required": true,
"unique": false,
"options": {
"min": null,
"max": null,
"pattern": ""
}
},
{
"system": false,
"id": "yoeuhhqj",
"name": "quantity",
"type": "number",
"required": false,
"unique": false,
"options": {
"min": null,
"max": null
}
},
{
"system": false,
"id": "uwlhmvhz",
"name": "price_per_unit",
"type": "number",
"required": false,
"unique": false,
"options": {
"min": null,
"max": null
}
},
{
"system": false,
"id": "ncz762ki",
"name": "description",
"type": "text",
"required": false,
"unique": false,
"options": {
"min": null,
"max": null,
"pattern": ""
}
}
],
"indexes": [],
"listRule": null,
"viewRule": null,
"createRule": null,
"updateRule": null,
"deleteRule": null,
"options": {}
});
return Dao(db).saveCollection(collection);
}, (db) => {
const dao = new Dao(db);
const collection = dao.findCollectionByNameOrId("9getj2tkvnpuzr2");
return dao.deleteCollection(collection);
})