mirror of
https://github.com/skeeto/endlessh.git
synced 2024-11-29 00:13:07 +01:00
9 lines
135 B
SQL
9 lines
135 B
SQL
CREATE TABLE IF NOT EXISTS log (
|
|
host TEXT,
|
|
port INTEGER,
|
|
time REAL,
|
|
bytes INTEGER
|
|
);
|
|
.mode csv
|
|
.import /dev/stdin log
|