This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
db.js
75 lines (70 loc) · 2.07 KB
/
db.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
const fs = require('fs')
const { log } = require('./utils')
const dbFile = './data/data.db'
const knex = require('knex')({
client: 'sqlite3',
connection: {
filename: dbFile,
},
useNullAsDefault: true,
})
async function createTableIF() {
if (!fs.existsSync(dbFile)) {
await knex.schema
.createTable('users', table => {
table.increments('id')
table.string('username')
table.string('password')
})
.createTable('symbols', table => {
table.increments('id')
table.string('symbol')
table.string('quantity')
table.string('percentChange')
table.string('close')
table.string('open')
table.string('low')
table.integer('enable')
table.integer('updateTime')
})
// .createTable('currentOrder', table => {
// table.increments('id')
// table.string('symbol')
// })
// .createTable('currentOrder', table => {
// table.increments('id')
// table.string('orderId')
// }) // 未交割的订单
// .createTable('order', table => {
// table.increments('id')
// table.integer('orderId').unsigned().references('orderId')
// table.string('symbol')
// table.string('status') // 订单状态
// table.string('clientOrderId')
// table.string('price')
// table.string('avgPrice')
// table.string('origQty')
// table.string('executedQty')
// table.string('cumQty')
// table.string('cumQuote')
// table.string('timeInForce') // 有效方法
// table.string('type') // 订单类型
// table.integer('reduceOnly')
// table.integer('closePosition')
// table.string('side') // 买卖方向
// table.string('positionSide') // 持仓方向
// table.string('stopPrice')
// table.string('workingType')
// table.string('priceProtect')
// table.string('origType')
// table.integer('updateTime')
// })
log('create table success', true)
} else {
log(`database has exist: ${dbFile}`)
}
}
module.exports = {
knex,
createTableIF,
}