14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
|
'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,
|
||
|
light TEXT
|
||
|
|
||
|
);`
|