stat_table_User_stats_full.sql 538 B

123456789101112131415161718
  1. -- --------------------------------------------------------
  2. --
  3. -- Table structure for table `User_stats_full`
  4. --
  5. CREATE TABLE `User_stats_full` (
  6. `id` int(11) NOT NULL,
  7. `router_id` int(11) DEFAULT 0,
  8. `auth_id` int(11) NOT NULL DEFAULT 0,
  9. `timestamp` datetime NOT NULL DEFAULT current_timestamp(),
  10. `byte_in` bigint(20) NOT NULL DEFAULT 0,
  11. `byte_out` bigint(20) NOT NULL DEFAULT 0,
  12. `pkt_in` int(11) DEFAULT NULL,
  13. `pkt_out` int(11) DEFAULT NULL,
  14. `step` int(11) NOT NULL DEFAULT 600
  15. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;