2017-12-20 06:19:51 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const os = require('os')
|
|
|
|
const sqlite3 = require('sqlite3')
|
|
|
|
const squel = require('squel')
|
|
|
|
|
|
|
|
const actionTable = `CREATE TABLE IF NOT EXISTS actions (
|
|
|
|
time INTEGER PRIMARY KEY,
|
|
|
|
type TEXT,
|
|
|
|
length INTEGER,
|
|
|
|
counter INTEGER,
|
2018-01-02 06:17:39 +00:00
|
|
|
light TEXT,
|
|
|
|
dir INTEGER,
|
|
|
|
sequence INTEGER
|
2017-12-20 06:19:51 +00:00
|
|
|
|
|
|
|
);`
|