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