1
0

stat_table_User_stats.sql 430 B

123456789101112131415
  1. -- --------------------------------------------------------
  2. --
  3. -- Структура таблицы `User_stats`
  4. --
  5. CREATE TABLE `User_stats` (
  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. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;