mirror of
https://github.com/skeeto/endlessh.git
synced 2024-05-19 06:49:58 +00: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
|