| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788 |
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!40101 SET NAMES utf8mb4 */;
- CREATE TABLE `acl` (
- `id` int(11) NOT NULL,
- `name` varchar(30) NOT NULL,
- `description_english` varchar(250) NOT NULL,
- `description_russian` varchar(250) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `ad_comp_cache` (
- `id` int(11) NOT NULL,
- `name` varchar(63) NOT NULL,
- `last_found` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `auth_rules` (
- `id` int(11) NOT NULL,
- `user_id` int(11) DEFAULT NULL,
- `ou_id` int(11) DEFAULT NULL,
- `rule_type` int(11) NOT NULL,
- `rule` varchar(40) DEFAULT NULL,
- `description` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `building` (
- `id` int(11) NOT NULL,
- `name` varchar(50) NOT NULL,
- `description` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `config` (
- `id` int(11) NOT NULL,
- `option_id` int(11) DEFAULT NULL,
- `value` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `config_options` (
- `id` int(11) NOT NULL,
- `option_name` varchar(50) NOT NULL,
- `description_russian` text DEFAULT NULL,
- `description_english` text DEFAULT NULL,
- `draft` tinyint(1) NOT NULL DEFAULT 0,
- `uniq` tinyint(1) NOT NULL DEFAULT 1,
- `option_type` varchar(100) NOT NULL,
- `default_value` varchar(250) DEFAULT NULL,
- `min_value` int(11) NOT NULL DEFAULT 0,
- `max_value` int(11) NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `connections` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `device_id` bigint(20) UNSIGNED NOT NULL,
- `port_id` bigint(20) UNSIGNED NOT NULL,
- `auth_id` bigint(20) UNSIGNED NOT NULL,
- `last_found` datetime NOT NULL DEFAULT current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `customers` (
- `id` int(11) NOT NULL,
- `Login` varchar(20) DEFAULT 'NULL',
- `description` varchar(100) DEFAULT NULL,
- `password` varchar(255) DEFAULT 'NULL',
- `api_key` varchar(255) DEFAULT NULL,
- `rights` tinyint(1) NOT NULL DEFAULT 3
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `devices` (
- `id` int(11) NOT NULL,
- `device_type` int(11) NOT NULL DEFAULT 1,
- `device_model_id` int(11) DEFAULT 89,
- `firmware` varchar(100) DEFAULT NULL,
- `vendor_id` int(11) NOT NULL DEFAULT 1,
- `device_name` varchar(50) DEFAULT NULL,
- `building_id` int(11) NOT NULL DEFAULT 1,
- `ip` varchar(15) DEFAULT NULL,
- `ip_int` bigint(10) UNSIGNED DEFAULT NULL,
- `login` varchar(50) DEFAULT NULL,
- `password` varchar(255) DEFAULT NULL,
- `protocol` int(11) NOT NULL DEFAULT 0,
- `control_port` int(11) NOT NULL DEFAULT 23,
- `port_count` int(11) NOT NULL DEFAULT 0,
- `SN` varchar(80) DEFAULT NULL,
- `description` varchar(255) DEFAULT NULL,
- `snmp_version` tinyint(4) NOT NULL DEFAULT 0,
- `snmp3_auth_proto` varchar(10) NOT NULL DEFAULT 'sha512',
- `snmp3_priv_proto` varchar(10) NOT NULL DEFAULT 'aes128',
- `snmp3_user_rw` varchar(20) DEFAULT NULL,
- `snmp3_user_rw_password` varchar(20) DEFAULT NULL,
- `snmp3_user_ro` varchar(20) DEFAULT NULL,
- `snmp3_user_ro_password` varchar(20) DEFAULT NULL,
- `community` varchar(50) NOT NULL DEFAULT 'public',
- `rw_community` varchar(50) NOT NULL DEFAULT 'private',
- `fdb_snmp_index` tinyint(1) NOT NULL DEFAULT 0,
- `discovery` tinyint(1) NOT NULL DEFAULT 1,
- `netflow_save` tinyint(1) NOT NULL DEFAULT 0,
- `user_acl` tinyint(1) NOT NULL DEFAULT 0,
- `dhcp` tinyint(1) NOT NULL DEFAULT 0,
- `nagios` tinyint(1) NOT NULL DEFAULT 0,
- `active` tinyint(1) NOT NULL DEFAULT 1,
- `nagios_status` varchar(10) NOT NULL DEFAULT 'UP',
- `queue_enabled` tinyint(1) NOT NULL DEFAULT 0,
- `connected_user_only` tinyint(1) NOT NULL DEFAULT 1,
- `user_id` int(11) DEFAULT NULL,
- `deleted` tinyint(1) NOT NULL DEFAULT 0,
- `discovery_locked` tinyint(1) NOT NULL DEFAULT 0,
- `locked_timestamp` timestamp NULL DEFAULT current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `device_filter_instances` (
- `id` int(11) NOT NULL,
- `instance_id` int(11) DEFAULT NULL,
- `device_id` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `device_l3_interfaces` (
- `id` int(11) NOT NULL,
- `device_id` int(11) DEFAULT NULL,
- `snmpin` int(11) DEFAULT NULL,
- `interface_type` int(11) NOT NULL DEFAULT 0,
- `name` varchar(100) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `device_models` (
- `id` int(11) NOT NULL,
- `model_name` varchar(200) DEFAULT NULL,
- `vendor_id` int(11) DEFAULT 1,
- `poe_in` tinyint(1) NOT NULL DEFAULT 0,
- `poe_out` tinyint(1) NOT NULL DEFAULT 0,
- `nagios_template` varchar(200) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `device_ports` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `device_id` int(11) DEFAULT NULL,
- `snmp_index` int(11) DEFAULT NULL,
- `port` int(11) DEFAULT NULL,
- `ifName` varchar(40) DEFAULT NULL,
- `port_name` varchar(40) DEFAULT NULL,
- `description` varchar(50) DEFAULT NULL,
- `target_port_id` int(11) NOT NULL DEFAULT 0,
- `auth_id` bigint(20) UNSIGNED DEFAULT NULL,
- `last_mac_count` int(11) DEFAULT 0,
- `uplink` tinyint(1) NOT NULL DEFAULT 0,
- `nagios` tinyint(1) NOT NULL DEFAULT 0,
- `skip` tinyint(1) NOT NULL DEFAULT 0,
- `vlan` int(11) NOT NULL DEFAULT 1,
- `tagged_vlan` varchar(250) DEFAULT NULL,
- `untagged_vlan` varchar(250) DEFAULT NULL,
- `forbidden_vlan` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `device_types` (
- `id` int(11) NOT NULL,
- name_russian varchar(50) DEFAULT NULL,
- name_english varchar(50) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `dhcp_log` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `mac` varchar(17) NOT NULL,
- `ip_int` bigint(20) UNSIGNED NOT NULL,
- `ip` varchar(15) NOT NULL,
- `action` varchar(10) NOT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `auth_id` bigint(20) UNSIGNED NOT NULL,
- `dhcp_hostname` varchar(250) DEFAULT NULL,
- `circuit_id` varchar(255) DEFAULT NULL,
- `remote_id` varchar(255) DEFAULT NULL,
- `client_id` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci KEY_BLOCK_SIZE=8 ROW_FORMAT=COMPRESSED;
- CREATE TABLE `dhcp_queue` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `mac` varchar(17) NOT NULL,
- `ip` varchar(15) NOT NULL,
- `action` varchar(10) NOT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `dhcp_hostname` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci KEY_BLOCK_SIZE=8 ROW_FORMAT=COMPRESSED;
- CREATE TABLE `dns_cache` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `dns` varchar(250) DEFAULT NULL,
- `ip` bigint(20) UNSIGNED DEFAULT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `dns_queue` (
- `id` int(11) NOT NULL,
- `auth_id` int(11) DEFAULT NULL,
- `name_type` varchar(10) NOT NULL DEFAULT 'A',
- `name` varchar(200) DEFAULT NULL,
- `operation_type` varchar(10) NOT NULL DEFAULT 'add',
- `value` varchar(100) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `filter_instances` (
- `id` int(11) NOT NULL,
- `name` varchar(50) DEFAULT NULL,
- `description` varchar(200) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `filter_list` (
- `id` int(11) NOT NULL,
- `name` varchar(50) DEFAULT NULL,
- `description` varchar(250) DEFAULT NULL,
- `proto` varchar(10) DEFAULT NULL,
- `dst` text DEFAULT NULL,
- `dstport` varchar(20) DEFAULT NULL,
- `srcport` varchar(20) DEFAULT NULL,
- `filter_type` int(10) UNSIGNED NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `gateway_subnets` (
- `id` int(11) NOT NULL,
- `device_id` int(11) DEFAULT NULL,
- `subnet_id` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `group_filters` (
- `id` int(11) NOT NULL,
- `group_id` int(11) NOT NULL DEFAULT 0,
- `filter_id` int(11) NOT NULL DEFAULT 0,
- `order` int(11) NOT NULL DEFAULT 0,
- `action` tinyint(1) NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `group_list` (
- `id` int(11) NOT NULL,
- `instance_id` int(11) NOT NULL DEFAULT 1,
- `group_name` varchar(50) DEFAULT NULL,
- `description` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `mac_history` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `mac` varchar(12) DEFAULT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `device_id` bigint(20) UNSIGNED DEFAULT NULL,
- `port_id` bigint(20) UNSIGNED DEFAULT NULL,
- `ip` varchar(16) NOT NULL DEFAULT '',
- `auth_id` bigint(20) UNSIGNED DEFAULT NULL,
- `dhcp_hostname` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `mac_vendors` (
- `id` int(11) NOT NULL,
- `oui` varchar(20) DEFAULT NULL,
- `companyName` varchar(255) DEFAULT NULL,
- `companyAddress` varchar(255) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `OU` (
- `id` int(11) NOT NULL,
- `ou_name` varchar(40) DEFAULT NULL,
- `description` varchar(250) DEFAULT NULL,
- `default_users` tinyint(1) NOT NULL DEFAULT 0,
- `default_hotspot` tinyint(1) NOT NULL DEFAULT 0,
- `nagios_dir` varchar(255) DEFAULT NULL,
- `nagios_host_use` varchar(50) DEFAULT NULL,
- `nagios_ping` tinyint(1) NOT NULL DEFAULT 1,
- `nagios_default_service` varchar(100) DEFAULT NULL,
- `enabled` int(11) NOT NULL DEFAULT 0,
- `filter_group_id` int(11) NOT NULL DEFAULT 0,
- `queue_id` int(11) NOT NULL DEFAULT 0,
- `dynamic` tinyint(1) NOT NULL DEFAULT 0,
- `life_duration` decimal(10,2) NOT NULL DEFAULT 24.00,
- `parent_id` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `queue_list` (
- `id` int(11) NOT NULL,
- `queue_name` varchar(20) NOT NULL,
- `Download` int(11) NOT NULL DEFAULT 0,
- `Upload` int(11) NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `remote_syslog` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `device_id` bigint(20) UNSIGNED NOT NULL,
- `ip` varchar(15) NOT NULL,
- `message` text NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci KEY_BLOCK_SIZE=8 ROW_FORMAT=COMPRESSED;
- CREATE TABLE `sessions` (
- `id` varchar(128) NOT NULL,
- `data` text NOT NULL,
- `last_accessed` int(11) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `subnets` (
- `id` int(11) NOT NULL,
- `subnet` varchar(18) DEFAULT NULL,
- `vlan_tag` int(11) NOT NULL DEFAULT 1,
- `ip_int_start` bigint(20) NOT NULL,
- `ip_int_stop` bigint(20) NOT NULL,
- `dhcp_start` bigint(20) NOT NULL DEFAULT 0,
- `dhcp_stop` bigint(20) NOT NULL DEFAULT 0,
- `dhcp_lease_time` int(11) NOT NULL DEFAULT 480,
- `gateway` bigint(20) NOT NULL DEFAULT 0,
- `office` tinyint(1) NOT NULL DEFAULT 1,
- `hotspot` tinyint(1) NOT NULL DEFAULT 0,
- `vpn` tinyint(1) NOT NULL DEFAULT 0,
- `free` tinyint(1) NOT NULL DEFAULT 0,
- `dhcp` tinyint(1) NOT NULL DEFAULT 1,
- `static` tinyint(1) NOT NULL DEFAULT 0,
- `dhcp_update_hostname` tinyint(1) NOT NULL DEFAULT 0,
- `discovery` tinyint(1) NOT NULL DEFAULT 1,
- `notify` tinyint(1) NOT NULL DEFAULT 7,
- `description` varchar(250) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `traffic_detail` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `auth_id` bigint(20) UNSIGNED DEFAULT NULL,
- `router_id` int(11) NOT NULL DEFAULT 0,
- `ts` timestamp NULL DEFAULT NULL,
- `proto` tinyint(3) UNSIGNED DEFAULT NULL,
- `src_ip` int(10) UNSIGNED NOT NULL,
- `dst_ip` int(10) UNSIGNED NOT NULL,
- `src_port` smallint(5) UNSIGNED NOT NULL,
- `dst_port` smallint(5) UNSIGNED NOT NULL,
- `bytes` bigint(20) NOT NULL,
- `pkt` int(10) UNSIGNED NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `unknown_mac` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `mac` varchar(12) DEFAULT NULL,
- `port_id` bigint(20) UNSIGNED DEFAULT NULL,
- `device_id` int(11) DEFAULT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `user_auth` (
- `id` int(11) NOT NULL,
- `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `ou_id` int(11) DEFAULT NULL,
- `ip` varchar(18) NOT NULL DEFAULT '',
- `ip_int` bigint(10) UNSIGNED NOT NULL DEFAULT 0,
- `save_traf` tinyint(1) NOT NULL DEFAULT 0,
- `enabled` tinyint(1) NOT NULL DEFAULT 0,
- `dhcp` tinyint(1) NOT NULL DEFAULT 1,
- `filter_group_id` tinyint(1) NOT NULL DEFAULT 0,
- `dynamic` tinyint(1) NOT NULL DEFAULT 0,
- `end_life` datetime DEFAULT NULL,
- `deleted` tinyint(4) NOT NULL DEFAULT 0,
- `description` varchar(250) DEFAULT NULL,
- `dns_name` varchar(253) DEFAULT NULL,
- `dns_ptr_only` tinyint(1) NOT NULL DEFAULT 0,
- `WikiName` varchar(250) DEFAULT NULL,
- `dhcp_acl` text DEFAULT NULL,
- `queue_id` int(11) NOT NULL DEFAULT 0,
- `mac` varchar(20) NOT NULL DEFAULT '',
- `dhcp_action` varchar(10) NOT NULL DEFAULT '',
- `dhcp_option_set` varchar(50) DEFAULT NULL,
- `dhcp_time` datetime NOT NULL DEFAULT current_timestamp(),
- `dhcp_hostname` varchar(60) DEFAULT NULL,
- `last_found` datetime NOT NULL DEFAULT current_timestamp(),
- `arp_found` datetime DEFAULT NULL,
- `mac_found` datetime DEFAULT NULL,
- `blocked` tinyint(1) NOT NULL DEFAULT 0,
- `day_quota` int(11) NOT NULL DEFAULT 0,
- `month_quota` int(11) NOT NULL DEFAULT 0,
- `device_model_id` int(11) DEFAULT 87,
- `firmware` varchar(100) DEFAULT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `client_id` varchar(250) DEFAULT NULL,
- `nagios` tinyint(1) NOT NULL DEFAULT 0,
- `nagios_status` varchar(10) NOT NULL DEFAULT '',
- `nagios_handler` varchar(50) NOT NULL DEFAULT '',
- `link_check` tinyint(1) NOT NULL DEFAULT 0,
- `changed` tinyint(1) NOT NULL DEFAULT 0,
- `dhcp_changed` int(11) NOT NULL DEFAULT 0,
- `changed_time` datetime NOT NULL DEFAULT current_timestamp(),
- `created_by` varchar(10) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `user_auth_alias` (
- `id` int(11) NOT NULL,
- `auth_id` int(11) NOT NULL,
- `alias` varchar(100) DEFAULT NULL,
- `description` varchar(100) DEFAULT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `user_list` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `login` varchar(255) DEFAULT NULL,
- `fio` varchar(255) DEFAULT NULL,
- `enabled` tinyint(1) NOT NULL DEFAULT 1,
- `blocked` tinyint(1) NOT NULL DEFAULT 0,
- `deleted` tinyint(1) NOT NULL DEFAULT 0,
- `ou_id` int(11) NOT NULL DEFAULT 0,
- `device_id` int(11) DEFAULT NULL,
- `filter_group_id` int(11) NOT NULL DEFAULT 0,
- `queue_id` int(11) NOT NULL DEFAULT 0,
- `day_quota` int(11) NOT NULL DEFAULT 0,
- `month_quota` int(11) NOT NULL DEFAULT 0,
- `permanent` tinyint(1) NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `user_sessions` (
- `id` int(11) NOT NULL,
- `session_id` varchar(128) NOT NULL,
- `user_id` int(11) NOT NULL,
- `ip_address` varchar(45) NOT NULL,
- `user_agent` text NOT NULL,
- `created_at` int(11) NOT NULL,
- `last_activity` int(11) NOT NULL,
- `is_active` tinyint(1) DEFAULT 1
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `user_stats` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `router_id` bigint(20) UNSIGNED DEFAULT 0,
- `auth_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `ts` datetime NOT NULL DEFAULT current_timestamp(),
- `byte_in` bigint(20) NOT NULL DEFAULT 0,
- `byte_out` bigint(20) NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `user_stats_full` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `router_id` bigint(20) UNSIGNED DEFAULT 0,
- `auth_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `ts` datetime NOT NULL DEFAULT current_timestamp(),
- `byte_in` bigint(20) NOT NULL DEFAULT 0,
- `byte_out` bigint(20) NOT NULL DEFAULT 0,
- `pkt_in` int(11) DEFAULT NULL,
- `pkt_out` int(11) DEFAULT NULL,
- `step` int(11) NOT NULL DEFAULT 600
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `variables` (
- `id` int(11) NOT NULL,
- `name` varchar(30) NOT NULL,
- `value` varchar(255) DEFAULT NULL,
- `clear_time` timestamp NOT NULL DEFAULT current_timestamp(),
- `created` timestamp NOT NULL DEFAULT current_timestamp()
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `vendors` (
- `id` int(11) NOT NULL,
- `name` varchar(40) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `version` (
- `id` int(11) NOT NULL DEFAULT 1,
- `version` varchar(10) NOT NULL DEFAULT '2.4.14'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `wan_stats` (
- `id` int(11) NOT NULL,
- `ts` datetime NOT NULL DEFAULT current_timestamp(),
- `router_id` int(11) DEFAULT NULL,
- `interface_id` int(11) DEFAULT NULL,
- `bytes_in` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `bytes_out` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `forward_in` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `forward_out` bigint(20) UNSIGNED NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
- CREATE TABLE `worklog` (
- `id` bigint(20) UNSIGNED NOT NULL,
- `ts` timestamp NOT NULL DEFAULT current_timestamp(),
- `auth_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `customer` varchar(50) NOT NULL DEFAULT 'system',
- `ip` varchar(18) NOT NULL DEFAULT '127.0.0.1',
- `message` text NOT NULL,
- `level` int(11) NOT NULL DEFAULT 1
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci KEY_BLOCK_SIZE=8 ROW_FORMAT=COMPRESSED;
- ALTER TABLE `acl`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `ad_comp_cache`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `comp_name` (`name`);
- ALTER TABLE `auth_rules`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `rule` (`rule`),
- ADD KEY `user_id` (`user_id`);
- ALTER TABLE `building`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `config`
- ADD PRIMARY KEY (`id`),
- ADD KEY `option` (`option_id`);
- ALTER TABLE `config_options`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `connections`
- ADD PRIMARY KEY (`id`),
- ADD KEY `auth_id` (`auth_id`),
- ADD KEY `device_id` (`device_id`,`port_id`);
- ALTER TABLE `customers`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `devices`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ip` (`ip`),
- ADD KEY `device_type` (`device_type`);
- ALTER TABLE `device_filter_instances`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `device_l3_interfaces`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `device_models`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `device_ports`
- ADD PRIMARY KEY (`id`),
- ADD KEY `device_id` (`device_id`),
- ADD KEY `port` (`port`),
- ADD KEY `target_port_id` (`target_port_id`);
- ALTER TABLE `device_types`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `dhcp_log`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ts` (`ts`,`action`);
- ALTER TABLE `dhcp_queue`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ts` (`ts`,`action`);
- ALTER TABLE `dns_cache`
- ADD PRIMARY KEY (`id`),
- ADD KEY `dns` (`dns`,`ip`),
- ADD KEY `ts` (`ts`);
- ALTER TABLE `dns_queue`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `filter_instances`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `name` (`name`);
- ALTER TABLE `filter_list`
- ADD PRIMARY KEY (`id`),
- ADD KEY `Name` (`name`);
- ALTER TABLE `gateway_subnets`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `group_filters`
- ADD PRIMARY KEY (`id`),
- ADD KEY `GroupId` (`group_id`,`filter_id`);
- ALTER TABLE `group_list`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `mac_history`
- ADD PRIMARY KEY (`id`),
- ADD KEY `mac` (`mac`,`ts`),
- ADD KEY `ip` (`ip`,`ts`),
- ADD KEY `ts` (`ts`) USING BTREE,
- ADD KEY `mac_2` (`mac`),
- ADD KEY `ip_2` (`ip`);
- ALTER TABLE `mac_vendors`
- ADD PRIMARY KEY (`id`),
- ADD KEY `oui` (`oui`);
- ALTER TABLE `OU`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `OU` ADD FULLTEXT KEY `ou_name` (`ou_name`);
- ALTER TABLE `queue_list`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `id` (`id`);
- ALTER TABLE `remote_syslog`
- ADD PRIMARY KEY (`id`),
- ADD KEY `date` (`date`,`device_id`,`ip`);
- ALTER TABLE `sessions`
- ADD PRIMARY KEY (`id`),
- ADD KEY `last_accessed` (`last_accessed`);
- ALTER TABLE `subnets`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ip_int_start` (`ip_int_start`,`ip_int_stop`),
- ADD KEY `dhcp` (`dhcp`,`office`,`hotspot`,`static`);
- ALTER TABLE `traffic_detail`
- ADD PRIMARY KEY (`id`),
- ADD KEY `src` (`auth_id`,`ts`,`router_id`,`src_ip`) USING BTREE,
- ADD KEY `dst` (`auth_id`,`ts`,`router_id`,`dst_ip`) USING BTREE;
- ALTER TABLE `unknown_mac`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ts` (`ts`,`device_id`,`port_id`,`mac`);
- ALTER TABLE `user_auth`
- ADD PRIMARY KEY (`id`),
- ADD KEY `auth_index` (`id`,`user_id`,`ip_int`,`mac`,`ip`,`deleted`) USING BTREE,
- ADD KEY `deleted` (`deleted`),
- ADD KEY `ou_id` (`ou_id`);
- ALTER TABLE `user_auth_alias`
- ADD PRIMARY KEY (`id`),
- ADD KEY `auth_id` (`auth_id`);
- ALTER TABLE `user_list`
- ADD PRIMARY KEY (`id`),
- ADD KEY `users` (`id`,`ou_id`,`enabled`,`blocked`,`deleted`);
- ALTER TABLE `user_sessions`
- ADD PRIMARY KEY (`id`),
- ADD KEY `session_id` (`session_id`),
- ADD KEY `user_id` (`user_id`),
- ADD KEY `is_active` (`is_active`);
- ALTER TABLE `user_stats`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ts` (`ts`,`auth_id`,`router_id`);
- ALTER TABLE `user_stats_full`
- ADD PRIMARY KEY (`id`),
- ADD KEY `ts` (`ts`,`auth_id`,`router_id`);
- ALTER TABLE `variables`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `name` (`name`),
- ADD KEY `clear_time` (`clear_time`,`created`);
- ALTER TABLE `vendors`
- ADD PRIMARY KEY (`id`);
- ALTER TABLE `version`
- ADD UNIQUE KEY `id` (`id`);
- ALTER TABLE `wan_stats`
- ADD PRIMARY KEY (`id`),
- ADD UNIQUE KEY `main` (`time`,`router_id`,`interface_id`),
- ADD KEY `times` (`time`);
- ALTER TABLE `worklog`
- ADD PRIMARY KEY (`id`),
- ADD KEY `idx_customer` (`customer`,`level`,`ts`),
- ADD KEY `idx_timestamp` (`level`,`ts`),
- ADD KEY `idx_auth_id` (`auth_id`,`level`,`ts`);
- ALTER TABLE `acl`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `ad_comp_cache`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `auth_rules`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `building`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `config`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `config_options`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `connections`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `customers`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `devices`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `device_filter_instances`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `device_l3_interfaces`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `device_models`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `device_ports`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `device_types`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `dhcp_log`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `dhcp_queue`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `dns_cache`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `dns_queue`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `filter_instances`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `filter_list`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `gateway_subnets`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `group_filters`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `group_list`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `mac_history`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `mac_vendors`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `OU`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `queue_list`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `remote_syslog`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `subnets`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `traffic_detail`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `unknown_mac`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `user_auth`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `user_auth_alias`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `user_list`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `user_sessions`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `user_stats`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `user_stats_full`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- ALTER TABLE `variables`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `vendors`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `wan_stats`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
- ALTER TABLE `worklog`
- MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|