Advertisement
iamtheyammer

MerakiBlocki Scanning API Create table syntax

Apr 21st, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. CREATE TABLE `[TABLE NAME]` (
  2. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. `apMac` char(17) NOT NULL DEFAULT '',
  4. `clientMac` char(17) NOT NULL DEFAULT '',
  5. `ipv4` varchar(18) DEFAULT NULL,
  6. `ipv6` varchar(25) DEFAULT NULL,
  7. `seenEpoch` int(17) NOT NULL,
  8. `ssid` varchar(30) DEFAULT NULL,
  9. `rssi` mediumint(2) DEFAULT NULL,
  10. `manufacturer` varchar(35) DEFAULT NULL,
  11. `os` varchar(35) DEFAULT NULL,
  12. `lat` double DEFAULT NULL,
  13. `lng` double DEFAULT NULL,
  14. `unc` int(11) DEFAULT NULL,
  15. PRIMARY KEY (`id`)
  16. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement