Files
expose/database/migrations/07_create_statistics_table.sql
2021-05-31 14:47:48 +02:00

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
)