1
0

stat_table_mac_history.sql 452 B

12345678910111213141516
  1. -- --------------------------------------------------------
  2. --
  3. -- Table structure for table `mac_history`
  4. --
  5. CREATE TABLE `mac_history` (
  6. `id` int(10) UNSIGNED NOT NULL,
  7. `mac` varchar(12) DEFAULT NULL,
  8. `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  9. `device_id` int(11) DEFAULT NULL,
  10. `port_id` int(11) DEFAULT NULL,
  11. `ip` varchar(16) NOT NULL DEFAULT '',
  12. `auth_id` int(11) DEFAULT NULL
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;