mirror of
https://github.com/loviuz/wifi-probe-aggregator.git
synced 2025-01-14 16:05:38 +01:00
14 lines
353 B
SQL
14 lines
353 B
SQL
--
|
|
-- Creazione tabella per il salvataggio dei mac address
|
|
--
|
|
|
|
CREATE TABLE `logs` (
|
|
`id` int(11) NOT NULL,
|
|
`mac` varchar(17) NOT NULL,
|
|
`ssid` varchar(255) NOT NULL,
|
|
`dbm` tinyint(4) NOT NULL,
|
|
`latitude` decimal(9,6) NOT NULL,
|
|
`longitude` decimal(9,6) NOT NULL,
|
|
`received_at` datetime NOT NULL DEFAULT current_timestamp()
|
|
) ENGINE=InnoDB;
|