mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
10 lines
259 B
SQL
10 lines
259 B
SQL
CREATE TABLE IF NOT EXISTS statistics (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
timestamp DATE,
|
|
shared_sites INTEGER,
|
|
shared_ports INTEGER,
|
|
unique_shared_sites INTEGER,
|
|
unique_shared_ports INTEGER,
|
|
incoming_requests INTEGER
|
|
)
|