# Dump of table instructions # ------------------------------------------------------------ DROP TABLE IF EXISTS `instructions`; CREATE TABLE `instructions` ( `id` int(11) NOT NULL, `instructions` text, /* __no_html_escape__ */ PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `instructions` (`id`, `instructions`) VALUES (1,'You can write instructions under admin menu!'); # Dump of table customers # ------------------------------------------------------------ DROP TABLE IF EXISTS `customers`; CREATE TABLE `customers` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(128) NOT NULL DEFAULT '', `address` varchar(255) DEFAULT NULL, `postcode` VARCHAR(32) NULL DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `state` varchar(255) DEFAULT NULL, `lat` varchar(31) DEFAULT NULL, `long` varchar(31) DEFAULT NULL, `contact_person` text DEFAULT NULL, `contact_phone` varchar(32) DEFAULT NULL, `contact_mail` varchar(254) DEFAULT NULL, `note` text DEFAULT NULL, `status` set('Active','Reserved','Inactive') DEFAULT 'Active', PRIMARY KEY (`id`), UNIQUE KEY `title` (`title`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table ipaddresses # ------------------------------------------------------------ DROP TABLE IF EXISTS `ipaddresses`; CREATE TABLE `ipaddresses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subnetId` INT(11) UNSIGNED NULL DEFAULT NULL, `ip_addr` varchar(100) NOT NULL, `is_gateway` BOOL NOT NULL DEFAULT '0', `description` varchar(64) DEFAULT NULL, `hostname` varchar(255) DEFAULT NULL, `mac` varchar(20) DEFAULT NULL, `owner` varchar(128) DEFAULT NULL, `state` INT(3) NULL DEFAULT '2', `switch` INT(11) UNSIGNED NULL DEFAULT NULL, `location` INT(11) UNSIGNED NULL DEFAULT NULL, `port` varchar(32) DEFAULT NULL, `note` text, `lastSeen` DATETIME NULL DEFAULT '1970-01-01 00:00:01', `excludePing` BOOL NOT NULL DEFAULT '0', `PTRignore` BOOL NOT NULL DEFAULT '0', `PTR` INT(11) UNSIGNED NULL DEFAULT '0', `firewallAddressObject` VARCHAR(100) NULL DEFAULT NULL, `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `customer_id` INT(11) unsigned NULL default NULL, PRIMARY KEY (`id`), UNIQUE KEY `sid_ip_unique` (`ip_addr`,`subnetId`), KEY `subnetid` (`subnetId`), KEY `location` (`location`), KEY `customer_ip` (`customer_id`), CONSTRAINT `customer_ip` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `ipaddresses` (`id`, `subnetId`, `ip_addr`, `description`, `hostname`, `state`) VALUES (1,3,'168427779','Server1','server1.cust1.local',2), (2,3,'168427780','Server2','server2.cust1.local',2), (3,3,'168427781','Server3','server3.cust1.local',3), (4,3,'168427782','Server4','server4.cust1.local',3), (5,3,'168428021','Gateway',NULL,2), (6,4,'168428286','Gateway',NULL,2), (7,4,'168428042','Server1','ser1.client2.local',2), (8,6,'172037636','DHCP range',NULL,4), (9,6,'172037637','DHCP range',NULL,4), (10,6,'172037638','DHCP range',NULL,4); # Dump of table logs # ------------------------------------------------------------ DROP TABLE IF EXISTS `logs`; CREATE TABLE `logs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `severity` int(11) DEFAULT NULL, `date` varchar(32) DEFAULT NULL, `username` varchar(255) DEFAULT NULL, `ipaddr` varchar(64) DEFAULT NULL, `command` text DEFAULT NULL, `details` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table requests # ------------------------------------------------------------ DROP TABLE IF EXISTS `requests`; CREATE TABLE `requests` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `subnetId` INT(11) UNSIGNED NULL DEFAULT NULL, `ip_addr` varchar(100) DEFAULT NULL, `description` varchar(64) DEFAULT NULL, `mac` varchar(20) DEFAULT NULL, `hostname` varchar(255) DEFAULT NULL, `state` INT NULL DEFAULT '2', `owner` varchar(128) DEFAULT NULL, `requester` varchar(128) DEFAULT NULL, `comment` text, `processed` binary(1) DEFAULT NULL, `accepted` binary(1) DEFAULT NULL, `adminComment` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table sections # ------------------------------------------------------------ DROP TABLE IF EXISTS `sections`; CREATE TABLE `sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '', `description` text, `masterSection` INT(11) NULL DEFAULT '0', `permissions` varchar(1024) DEFAULT NULL, /* __no_html_escape__ */ `strictMode` BINARY(1) NOT NULL DEFAULT '1', `subnetOrdering` VARCHAR(16) NULL DEFAULT NULL, `order` INT(3) NULL DEFAULT NULL, `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `showSubnet` BOOL NOT NULL DEFAULT '1', `showVLAN` BOOL NOT NULL DEFAULT '0', `showVRF` BOOL NOT NULL DEFAULT '0', `showSupernetOnly` BOOL NOT NULL DEFAULT '0', `DNS` VARCHAR(128) NULL DEFAULT NULL, PRIMARY KEY (`name`), UNIQUE KEY `id_2` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `sections` (`id`, `name`, `description`, `permissions`) VALUES (1,'Customers','Section for customers','{\"3\":\"1\",\"2\":\"2\"}'), (2,'IPv6','Section for IPv6 addresses','{\"3\":\"1\",\"2\":\"2\"}'); # Dump of table settings # ------------------------------------------------------------ DROP TABLE IF EXISTS `settings`; CREATE TABLE `settings` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `siteTitle` varchar(64) DEFAULT NULL, `siteAdminName` varchar(64) DEFAULT NULL, `siteAdminMail` varchar(254) DEFAULT NULL, `siteDomain` varchar(32) DEFAULT NULL, `siteURL` varchar(64) DEFAULT NULL, `siteLoginText` varchar(128) DEFAULT NULL, `domainAuth` tinyint(1) DEFAULT NULL, `enableIPrequests` tinyint(1) DEFAULT NULL, `enableVRF` tinyint(1) DEFAULT '1', `enableDNSresolving` tinyint(1) DEFAULT NULL, `enableFirewallZones` TINYINT(1) NOT NULL DEFAULT '0', `firewallZoneSettings` VARCHAR(1024) NOT NULL DEFAULT '{"zoneLength":3,"ipType":{"0":"v4","1":"v6"},"separator":"_","indicator":{"0":"own","1":"customer"},"zoneGenerator":"2","zoneGeneratorType":{"0":"decimal","1":"hex","2":"text"},"deviceType":"3","padding":"on","strictMode":"on","pattern":{"0":"patternFQDN"}}', /* __no_html_escape__ */ `enablePowerDNS` TINYINT(1) NULL DEFAULT '0', `powerDNS` TEXT NULL, /* __no_html_escape__ */ `enableDHCP` TINYINT(1) NULL DEFAULT '0', `DHCP` VARCHAR(256) NULL default '{"type":"kea","settings":{"file":"\/etc\/kea\/kea.conf"}}', /* __no_html_escape__ */ `enableMulticast` TINYINT(1) NULL DEFAULT '0', `enableNAT` TINYINT(1) NULL DEFAULT '1', `enableSNMP` TINYINT(1) NULL DEFAULT '0', `enableThreshold` TINYINT(1) NULL DEFAULT '1', `enableRACK` TINYINT(1) NULL DEFAULT '1', `enableLocations` TINYINT(1) NULL DEFAULT '1', `enablePSTN` TINYINT(1) NULL DEFAULT '0', `enableChangelog` TINYINT(1) NOT NULL DEFAULT '1', `enableCustomers` TINYINT(1) NOT NULL DEFAULT '1', `enableVaults` TINYINT(1) NOT NULL DEFAULT '1', `link_field` VARCHAR(32) NULL DEFAULT '0', `version` varchar(5) DEFAULT NULL, `dbversion` INT(8) NOT NULL DEFAULT '0', `dbverified` BINARY(1) NOT NULL DEFAULT '0', `donate` tinyint(1) DEFAULT '0', `IPfilter` varchar(128) DEFAULT NULL, `IPrequired` VARCHAR(128) NULL DEFAULT NULL, `vlanDuplicate` int(1) DEFAULT '0', `vlanMax` INT(8) NULL DEFAULT '4096', `subnetOrdering` varchar(16) DEFAULT 'subnet,asc', `visualLimit` int(2) NOT NULL DEFAULT '0', `theme` VARCHAR(32) NOT NULL DEFAULT 'dark', `autoSuggestNetwork` TINYINT(1) NOT NULL DEFAULT '0', `pingStatus` VARCHAR(32) NOT NULL DEFAULT '1800;3600', `defaultLang` INT(3) NULL DEFAULT NULL, `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `vcheckDate` DATETIME NULL DEFAULT NULL , `api` BINARY NOT NULL DEFAULT '0', `scanPingPath` VARCHAR(64) NULL DEFAULT '/bin/ping', `scanFPingPath` VARCHAR(64) NULL DEFAULT '/bin/fping', `scanPingType` ENUM('none','ping','pear','fping') NOT NULL DEFAULT 'ping', `scanMaxThreads` INT(4) NULL DEFAULT '128', `prettyLinks` ENUM('Yes','No') NOT NULL DEFAULT 'No', `hiddenCustomFields` text NULL, `inactivityTimeout` INT(5) NOT NULL DEFAULT '3600', `updateTags` TINYINT(1) NULL DEFAULT '0', `enforceUnique` TINYINT(1) NULL DEFAULT '1', `authmigrated` TINYINT NOT NULL DEFAULT '0', `maintaneanceMode` TINYINT(1) NULL DEFAULT '0', `decodeMAC` TINYINT(1) NULL DEFAULT '1', `tempShare` TINYINT(1) NULL DEFAULT '0', `tempAccess` TEXT NULL, /* __no_html_escape__ */ `log` ENUM('Database','syslog', 'both') NOT NULL DEFAULT 'Database', `subnetView` TINYINT NOT NULL DEFAULT '0', `enableCircuits` TINYINT(1) NULL DEFAULT '1', `enableRouting` TINYINT(1) NULL DEFAULT '0', `permissionPropagate` TINYINT(1) NULL DEFAULT '1', `passwordPolicy` VARCHAR(1024) NULL DEFAULT '{\"minLength\":8,\"maxLength\":0,\"minNumbers\":0,\"minLetters\":0,\"minLowerCase\":0,\"minUpperCase\":0,\"minSymbols\":0,\"maxSymbols\":0,\"allowedSymbols\":\"#,_,-,!,[,],=,~\"}', /* __no_html_escape__ */ `2fa_provider` ENUM('none','Google_Authenticator') NULL DEFAULT 'none', `2fa_name` VARCHAR(32) NULL DEFAULT 'phpipam', `2fa_length` INT(2) NULL DEFAULT '26', `2fa_userchange` BOOL NOT NULL DEFAULT '1', `passkeys` TINYINT(1) NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `settings` (`id`, `siteTitle`, `siteAdminName`, `siteAdminMail`, `siteDomain`, `siteURL`, `domainAuth`, `enableIPrequests`, `enableVRF`, `enableDNSresolving`, `version`, `donate`, `IPfilter`, `vlanDuplicate`, `subnetOrdering`, `visualLimit`) VALUES (1, 'phpipam IP address management', 'Sysadmin', 'admin@domain.local', 'domain.local', 'http://yourpublicurl.com', 0, 0, 0, 0, '1.4', 0, 'mac;owner;state;switch;note;firewallAddressObject', 1, 'subnet,asc', 24); # Dump of table settingsMail # ------------------------------------------------------------ DROP TABLE IF EXISTS `settingsMail`; CREATE TABLE `settingsMail` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `mtype` ENUM('localhost','smtp') NOT NULL DEFAULT 'localhost', `msecure` ENUM('none','ssl','tls') NOT NULL DEFAULT 'none', `mauth` ENUM('yes','no') NOT NULL DEFAULT 'no', `mserver` varchar(128) DEFAULT NULL, `mport` int(5) DEFAULT '25', `muser` varchar(254) DEFAULT NULL, `mpass` varchar(128) DEFAULT NULL, /* __no_html_escape__ */ `mAdminName` varchar(128) DEFAULT NULL, `mAdminMail` varchar(254) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `settingsMail` (`id`, `mtype`, `msecure`, `mauth`, `mserver`, `mport`, `mAdminName`, `mAdminMail`) VALUES (1, 'smtp', 'none', 'no', '127.0.0.1', '25', 'PhpIpam', 'phpipam@__YNH_DOM__'); # Dump of table subnets # ------------------------------------------------------------ DROP TABLE IF EXISTS `subnets`; CREATE TABLE `subnets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subnet` VARCHAR(255) NULL DEFAULT NULL, `mask` VARCHAR(3) NULL DEFAULT NULL, `sectionId` INT(11) UNSIGNED NULL DEFAULT NULL, `description` text, `linked_subnet` INT(11) UNSIGNED NULL DEFAULT NULL, `firewallAddressObject` VARCHAR(100) NULL DEFAULT NULL, `vrfId` INT(11) UNSIGNED NULL DEFAULT NULL, `masterSubnetId` INT(11) UNSIGNED NOT NULL default 0, `allowRequests` BOOL NOT NULL DEFAULT '0', `vlanId` INT(11) UNSIGNED NULL DEFAULT NULL, `showName` BOOL NOT NULL DEFAULT '0', `device` INT UNSIGNED NULL DEFAULT '0', `permissions` varchar(1024) DEFAULT NULL, /* __no_html_escape__ */ `pingSubnet` BOOL NOT NULL DEFAULT '0', `discoverSubnet` BOOL NOT NULL DEFAULT '0', `resolveDNS` BOOL NOT NULL DEFAULT '0', `DNSrecursive` BOOL NOT NULL DEFAULT '0', `DNSrecords` BOOL NOT NULL DEFAULT '0', `nameserverId` INT(11) NULL DEFAULT '0', `scanAgent` INT(11) DEFAULT NULL, `customer_id` INT(11) unsigned NULL default NULL, `isFolder` BOOL NOT NULL DEFAULT '0', `isFull` BOOL NOT NULL DEFAULT '0', `isPool` BOOL NOT NULL DEFAULT '0', `state` INT(3) NULL DEFAULT '2', `threshold` int(3) NULL DEFAULT 0, `location` INT(11) UNSIGNED NULL DEFAULT NULL, `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `lastScan` TIMESTAMP NULL, `lastDiscovery` TIMESTAMP NULL, PRIMARY KEY (`id`), KEY `masterSubnetId` (`masterSubnetId`), KEY `location` (`location`), KEY `sectionId` (`sectionId`), KEY `vrfId` (`vrfId`), KEY `customer_subnets` (`customer_id`), CONSTRAINT `customer_subnets` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `subnets` (`id`, `subnet`, `mask`, `sectionId`, `description`, `vrfId`, `masterSubnetId`, `allowRequests`, `vlanId`, `showName`, `permissions`, `isFolder`) VALUES (1,'336395549904799703390415618052362076160','64',2,'Private subnet 1',0,'0',1,1,1,'{\"3\":\"1\",\"2\":\"2\"}',0), (2,'168427520','16','1','Business customers',0,'0',1,0,1,'{\"3\":\"1\",\"2\":\"2\"}',0), (3,'168427776','24','1','Customer 1',0,'2',1,0,1,'{\"3\":\"1\",\"2\":\"2\"}',0), (4,'168428032','24','1','Customer 2',0,'2',1,0,1,'{\"3\":\"1\",\"2\":\"2\"}',0), (5, '0', '', 1, 'My folder', 0, 0, 0, 0, 0, '{\"3\":\"1\",\"2\":\"2\"}', 1), (6, '172037632', '24', 1, 'DHCP range', 0, 5, 0, 0, 1, '{\"3\":\"1\",\"2\":\"2\"}', 0); # Dump of table devices # ------------------------------------------------------------ DROP TABLE IF EXISTS `devices`; CREATE TABLE `devices` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `hostname` varchar(255) DEFAULT NULL, `ip_addr` varchar(100) DEFAULT NULL, `type` int(2) DEFAULT '0', `description` varchar(256) DEFAULT NULL, `sections` varchar(1024) DEFAULT NULL, /* __no_html_escape__ */ `snmp_community` varchar(100) DEFAULT NULL, `snmp_version` set('0','1','2','3') DEFAULT '0', `snmp_port` mediumint(5) unsigned DEFAULT '161', `snmp_timeout` mediumint(5) unsigned DEFAULT '1000', `snmp_queries` varchar(128) DEFAULT NULL, `snmp_v3_sec_level` set('none','noAuthNoPriv','authNoPriv','authPriv') DEFAULT 'none', `snmp_v3_auth_protocol` set('none','MD5','SHA') DEFAULT 'none', `snmp_v3_auth_pass` varchar(64) DEFAULT NULL, /* __no_html_escape__ */ `snmp_v3_priv_protocol` set('none','DES','AES') DEFAULT 'none', `snmp_v3_priv_pass` varchar(64) DEFAULT NULL, /* __no_html_escape__ */ `snmp_v3_ctx_name` varchar(64) DEFAULT NULL, `snmp_v3_ctx_engine_id` varchar(64) DEFAULT NULL, `rack` int(11) unsigned DEFAULT NULL, `rack_start` int(11) unsigned DEFAULT NULL, `rack_size` int(11) unsigned DEFAULT NULL, `location` int(11) unsigned DEFAULT NULL, `editDate` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `hostname` (`hostname`), KEY `location` (`location`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table userGroups # ------------------------------------------------------------ DROP TABLE IF EXISTS `userGroups`; CREATE TABLE `userGroups` ( `g_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `g_name` varchar(32) DEFAULT NULL, `g_desc` varchar(1024) DEFAULT NULL, `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`g_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `userGroups` (`g_id`, `g_name`, `g_desc`) VALUES (2,'Operators','default Operator group'), (3,'Guests','default Guest group (viewers)'); # Dump of table users # ------------------------------------------------------------ DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL DEFAULT '', `authMethod` INT(2) NULL DEFAULT 1, `passkey_only` TINYINT(1) NOT NULL DEFAULT '0', `password` CHAR(128) DEFAULT NULL, `groups` varchar(1024) DEFAULT NULL, /* __no_html_escape__ */ `role` text, `real_name` varchar(128) DEFAULT NULL, `email` varchar(254) DEFAULT NULL, `domainUser` binary(1) DEFAULT '0', `widgets` VARCHAR(1024) NULL DEFAULT 'statistics;favourite_subnets;changelog;top10_hosts_v4', `lang` INT(11) UNSIGNED NULL DEFAULT '9', `favourite_subnets` VARCHAR(1024) NULL DEFAULT NULL, `disabled` ENUM('Yes','No') NOT NULL DEFAULT 'No', `mailNotify` ENUM('Yes','No') NOT NULL DEFAULT 'No', `mailChangelog` ENUM('Yes','No') NOT NULL DEFAULT 'No', `passChange` ENUM('Yes','No') NOT NULL DEFAULT 'No', `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `lastLogin` TIMESTAMP NULL, `lastActivity` TIMESTAMP NULL, `compressOverride` ENUM('default','Uncompress') NOT NULL DEFAULT 'default', `hideFreeRange` tinyint(1) DEFAULT '0', `menuType` ENUM('Static','Dynamic') NOT NULL DEFAULT 'Dynamic', `menuCompact` TINYINT NULL DEFAULT '1', `2fa` BOOL NOT NULL DEFAULT '0', `2fa_secret` VARCHAR(32) NULL DEFAULT NULL, `theme` VARCHAR(32) NULL DEFAULT '', `token` VARCHAR(24) NULL DEFAULT NULL, `token_valid_until` DATETIME NULL, `module_permissions` varchar(255) DEFAULT '{"vlan":"1","l2dom":"1","vrf":"1","pdns":"1","circuits":"1","racks":"1","nat":"1","pstn":"1","customers":"1","locations":"1","devices":"1","routing":"1","vaults":"1"}', /* __no_html_escape__ */ `compress_actions` TINYINT(1) NULL DEFAULT '1', PRIMARY KEY (`username`), UNIQUE KEY `id_2` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `users` (`id`, `username`, `authMethod`, `role`, `real_name`, `email`, `domainUser`,`widgets`, `passChange`) VALUES (1,'__YNH_ADMIN__','1','Administrator','__YNH_REAL_NAME__','__YNH_EMAIL__','0','statistics;favourite_subnets;changelog;access_logs;error_logs;top10_hosts_v4', 'No'); # Dump of table lang # ------------------------------------------------------------ DROP TABLE IF EXISTS `lang`; CREATE TABLE `lang` ( `l_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `l_code` varchar(12) NOT NULL DEFAULT '', `l_name` varchar(32) DEFAULT NULL, PRIMARY KEY (`l_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `lang` (`l_id`, `l_code`, `l_name`) VALUES (1, 'en_GB.UTF-8', 'English'), (2, 'sl_SI.UTF-8', 'Slovenščina'), (3, 'fr_FR.UTF-8', 'Français'), (4, 'nl_NL.UTF-8', 'Nederlands'), (5, 'de_DE.UTF-8', 'Deutsch'), (6, 'pt_BR.UTF-8', 'Brazil'), (7, 'es_ES.UTF-8', 'Español'), (8, 'cs_CZ.UTF-8', 'Czech'), (9, 'en_US.UTF-8', 'English (US)'), (10, 'ru_RU.UTF-8', 'Russian'), (11, 'zh_CN.UTF-8', 'Chinese'), (12, 'ja_JP.UTF-8', 'Japanese'), (13, 'zh_TW.UTF-8', 'Chinese traditional (繁體中文)'), (14, 'it_IT.UTF-8', 'Italian'); # Dump of table vlans # ------------------------------------------------------------ DROP TABLE IF EXISTS `vlans`; CREATE TABLE `vlans` ( `vlanId` int(11) NOT NULL AUTO_INCREMENT, `domainId` INT NOT NULL DEFAULT '1', `name` varchar(255) NOT NULL, `number` int(4) DEFAULT NULL, `description` text, `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `customer_id` INT(11) unsigned NULL default NULL, PRIMARY KEY (`vlanId`), KEY `customer_vlans` (`customer_id`), CONSTRAINT `customer_vlans` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `vlans` (`vlanId`, `name`, `number`, `description`) VALUES (1,'IPv6 private 1',2001,'IPv6 private 1 subnets'), (2,'Servers DMZ',4001,'DMZ public'); # Dump of table vlanDomains # ------------------------------------------------------------ DROP TABLE IF EXISTS `vlanDomains`; CREATE TABLE `vlanDomains` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL, `description` text, `permissions` varchar(128) DEFAULT NULL, /* __no_html_escape__ */ PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `vlanDomains` (`id`, `name`, `description`, `permissions`) VALUES (1, 'default', 'default L2 domain', NULL); # Dump of table vrf # ------------------------------------------------------------ DROP TABLE IF EXISTS `vrf`; CREATE TABLE `vrf` ( `vrfId` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL DEFAULT '', `rd` varchar(32) DEFAULT NULL, `description` varchar(256) DEFAULT NULL, `sections` VARCHAR(128) NULL DEFAULT NULL, /* __no_html_escape__ */ `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, `customer_id` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`vrfId`), KEY `customer_vrf` (`customer_id`), CONSTRAINT `customer_vrf` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table nameservers # ------------------------------------------------------------ DROP TABLE IF EXISTS `nameservers`; CREATE TABLE `nameservers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `namesrv1` varchar(255) DEFAULT NULL, `description` text, `permissions` varchar(128) DEFAULT NULL, /* __no_html_escape__ */ `editDate` TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `nameservers` (`name`, `namesrv1`, `description`, `permissions`) VALUES ('Google NS', '8.8.8.8;8.8.4.4', 'Google public nameservers', '1;2'); # Dump of table api # ------------------------------------------------------------ DROP TABLE IF EXISTS `api`; CREATE TABLE `api` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `app_id` varchar(32) NOT NULL DEFAULT '', `app_code` varchar(32) NULL DEFAULT '', `app_permissions` int(1) DEFAULT '1', `app_comment` TEXT NULL, `app_security`SET('ssl_code','ssl_token','crypt','user','none') NOT NULL DEFAULT 'ssl_token', `app_lock` INT(1) NOT NULL DEFAULT '0', `app_lock_wait` INT(4) NOT NULL DEFAULT '30', `app_nest_custom_fields` TINYINT(1) NULL DEFAULT '0', `app_show_links` TINYINT(1) NULL DEFAULT '0', `app_last_access` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `app_id` (`app_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table changelog # ------------------------------------------------------------ DROP TABLE IF EXISTS `changelog`; CREATE TABLE `changelog` ( `cid` int(11) unsigned NOT NULL AUTO_INCREMENT, `ctype` set('ip_addr','subnet','section') NOT NULL DEFAULT '', `coid` int(11) unsigned NOT NULL, `cuser` int(11) unsigned NOT NULL, `caction` ENUM('add','edit','delete','truncate','resize','perm_change') NOT NULL DEFAULT 'edit', `cresult` ENUM('error','success') NOT NULL DEFAULT 'success', `cdate` datetime NOT NULL, `cdiff` text DEFAULT NULL, PRIMARY KEY (`cid`), KEY `coid` (`coid`), KEY `ctype` (`ctype`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table widgets # ------------------------------------------------------------ DROP TABLE IF EXISTS `widgets`; CREATE TABLE `widgets` ( `wid` int(11) unsigned NOT NULL AUTO_INCREMENT, `wtitle` varchar(64) NOT NULL DEFAULT '', `wdescription` varchar(1024) DEFAULT NULL, `wfile` varchar(64) NOT NULL DEFAULT '', `wparams` varchar(1024) DEFAULT NULL, `whref` enum('yes','no') NOT NULL DEFAULT 'no', `wsize` enum('4','6','8','12') NOT NULL DEFAULT '6', `wadminonly` enum('yes','no') NOT NULL DEFAULT 'no', `wactive` enum('yes','no') NOT NULL DEFAULT 'no', PRIMARY KEY (`wid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `widgets` (`wid`, `wtitle`, `wdescription`, `wfile`, `wparams`, `whref`, `wsize`, `wadminonly`, `wactive`) VALUES ( 1,'Statistics', 'Shows some statistics on number of hosts, subnets', 'statistics', 'height=x', 'no', '4', 'no', 'yes'), ( 2,'Favourite subnets', 'Shows favourite subnets', 'favourite_subnets', 'height=x&max=x', 'yes', '8', 'no', 'yes'), ( 3,'Top IPv4 subnets by number of hosts', 'Shows graph of top IPv4 subnets by number of hosts', 'top10_hosts_v4', 'height=x&max=x', 'yes', '6', 'no', 'yes'), ( 4,'Top IPv6 subnets by number of hosts', 'Shows graph of top IPv6 subnets by number of hosts', 'top10_hosts_v6', 'height=x&max=x', 'yes', '6', 'no', 'yes'), ( 5,'Top IPv4 subnets by usage percentage', 'Shows graph of top IPv4 subnets by usage percentage', 'top10_percentage', 'height=x&max=x', 'yes', '6', 'no', 'yes'), ( 6,'Most recent change log entries', 'Shows list of most recent change log entries', 'changelog', 'height=x&max=x', 'yes', '12', 'no', 'yes'), ( 7,'Active IP addresses requests', 'Shows list of active IP address request', 'requests', 'height=x&max=x', 'yes', '6', 'yes', 'yes'), ( 8,'Most recent informational logs', 'Shows list of most recent informational logs', 'access_logs', 'height=x&max=x', 'yes', '6', 'yes', 'yes'), ( 9,'Most recent warning / error logs', 'Shows list of most recent warning and error logs', 'error_logs', 'height=x&max=x', 'yes', '6', 'yes', 'yes'), (10,'Tools menu', 'Shows quick access to tools menu', 'tools', NULL, 'yes', '6', 'no', 'yes'), (11,'IP Calculator', 'Shows IP calculator as widget', 'ipcalc', NULL, 'yes', '6', 'no', 'yes'), (12,'IP Request', 'IP Request widget', 'iprequest', NULL, 'no', '6', 'no', 'yes'), (13,'Threshold', 'Shows threshold usage for most consumed subnets', 'threshold', 'height=x&max=x', 'yes', '6', 'no', 'yes'), (14,'Inactive hosts', 'Shows list of inactive hosts for defined period', 'inactive-hosts', 'height=x&days=30', 'yes', '6', 'yes', 'yes'), (15,'Locations', 'Shows map of locations', 'locations', 'height=x', 'yes', '6', 'no', 'yes'), (16,'Bandwidth calculator', 'Calculate bandwidth', 'bw_calculator', NULL, 'no', '6', 'no', 'yes'), (17,'Customers', 'Shows customer list', 'customers', 'height=x', 'yes', '6', 'no', 'yes'), (18,'User Instructions', 'Shows user instructions', 'instructions', NULL, 'yes', '6', 'no', 'yes'), (19,'MAC lookup', 'Shows MAC address vendor', 'mac-lookup', NULL, 'yes', '6', 'no', 'yes'), (20,'Recent Logins', 'Shows most recent user logins', 'recent_logins', 'max=5&height=x', 'no', '4', 'yes', 'yes'); # Dump of table deviceTypes # ------------------------------------------------------------ DROP TABLE IF EXISTS `deviceTypes`; CREATE TABLE `deviceTypes` ( `tid` int(11) unsigned NOT NULL AUTO_INCREMENT, `tname` varchar(128) DEFAULT NULL, `tdescription` varchar(128) DEFAULT NULL, PRIMARY KEY (`tid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `deviceTypes` (`tid`, `tname`, `tdescription`) VALUES (1, 'Switch', 'Switch'), (2, 'Router', 'Router'), (3, 'Firewall', 'Firewall'), (4, 'Hub', 'Hub'), (5, 'Wireless', 'Wireless'), (6, 'Database', 'Database'), (7, 'Workstation', 'Workstation'), (8, 'Laptop', 'Laptop'), (9, 'Other', 'Other'); # Dump of table loginAttempts # ------------------------------------------------------------ DROP TABLE IF EXISTS `loginAttempts`; CREATE TABLE `loginAttempts` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `ip` varchar(128) NOT NULL DEFAULT '', `count` int(2) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ip` (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table usersAuthMethod # ------------------------------------------------------------ DROP TABLE IF EXISTS `usersAuthMethod`; CREATE TABLE `usersAuthMethod` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type` ENUM('local','http','AD','LDAP','NetIQ','Radius','SAML2') NOT NULL DEFAULT 'local', `params` text DEFAULT NULL, /* __no_html_escape__ */ `protected` ENUM('Yes','No') NOT NULL DEFAULT 'Yes', `description` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `usersAuthMethod` (`id`, `type`, `params`, `protected`, `description`) VALUES (1, 'LDAP', '{"domain_controllers":"127.0.0.1","base_dn":"dc=yunohost,dc=org","users_base_dn":"ou=users,dc=yunohost,dc=org","uid_attr":"uid","ldap_security":"none","ad_port":"389","adminUsername":"","adminPassword":""}', 'Yes', 'LDAP Yunohost'); # Dump of table ipTags # ------------------------------------------------------------ DROP TABLE IF EXISTS `ipTags`; CREATE TABLE `ipTags` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(32) DEFAULT NULL, `showtag` tinyint(4) DEFAULT '1', `bgcolor` varchar(7) DEFAULT '#000', `fgcolor` varchar(7) DEFAULT '#fff', `compress` SET('No','Yes') NOT NULL DEFAULT 'No', `locked` set('No','Yes') NOT NULL DEFAULT 'No', `updateTag` TINYINT(1) NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `ipTags` (`id`, `type`, `showtag`, `bgcolor`, `fgcolor`, `compress`, `locked`, `updateTag`) VALUES (1, 'Offline', 1, '#f59c99', '#ffffff', 'No', 'Yes', 1), (2, 'Used', 0, '#a9c9a4', '#ffffff', 'No', 'Yes', 1), (3, 'Reserved', 1, '#9ac0cd', '#ffffff', 'No', 'Yes', 1), (4, 'DHCP', 1, '#c9c9c9', '#ffffff', 'Yes', 'Yes', 1); # Dump of table firewallZones # ------------------------------------------------------------ DROP TABLE IF EXISTS `firewallZones`; CREATE TABLE `firewallZones` ( `id` int(11) NOT NULL AUTO_INCREMENT, `generator` tinyint(1) NOT NULL, `length` int(2) DEFAULT NULL, `padding` tinyint(1) DEFAULT NULL, `zone` varchar(31) NOT NULL, `indicator` varchar(8) NOT NULL, `description` text, `permissions` varchar(1024) DEFAULT NULL, /* __no_html_escape__ */ `editDate` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table firewallZoneMapping # ------------------------------------------------------------ DROP TABLE IF EXISTS `firewallZoneMapping`; CREATE TABLE `firewallZoneMapping` ( `id` int(11) NOT NULL AUTO_INCREMENT, `zoneId` int(11) unsigned NOT NULL, `alias` varchar(255) DEFAULT NULL, `deviceId` int(11) unsigned DEFAULT NULL, `interface` varchar(255) DEFAULT NULL, `editDate` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `devId_idx` (`deviceId`), CONSTRAINT `devId` FOREIGN KEY (`deviceId`) REFERENCES `devices` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table firewallZoneMapping # ------------------------------------------------------------ DROP TABLE IF EXISTS `firewallZoneSubnet`; CREATE TABLE `firewallZoneSubnet` ( `zoneId` INT NOT NULL, `subnetId` INT(11) NOT NULL, PRIMARY KEY (`zoneId`,`subnetId`), INDEX `fk_zoneId_idx` (`zoneId` ASC), INDEX `fk_subnetId_idx` (`subnetId` ASC), CONSTRAINT `fk_zoneId` FOREIGN KEY (`zoneId`) REFERENCES `firewallZones` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `fk_subnetId` FOREIGN KEY (`subnetId`) REFERENCES `subnets` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table scanAgents # ------------------------------------------------------------ DROP TABLE IF EXISTS `scanAgents`; CREATE TABLE `scanAgents` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) DEFAULT NULL, `description` text, `type` set('direct','api','mysql') NOT NULL DEFAULT '', `code` varchar(32) DEFAULT NULL, `last_access` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `scanAgents` (`id`, `name`, `description`, `type`) VALUES (1, 'localhost', 'Scanning from local machine', 'direct'); # Dump of table nat # ------------------------------------------------------------ DROP TABLE IF EXISTS `nat`; CREATE TABLE `nat` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL, `type` set('source','static','destination') DEFAULT 'source', `src` text DEFAULT NULL, /* __no_html_escape__ */ `dst` text DEFAULT NULL, /* __no_html_escape__ */ `src_port` int(5) DEFAULT NULL, `dst_port` int(5) DEFAULT NULL, `device` int(11) unsigned DEFAULT NULL, `description` text DEFAULT NULL, `policy` set('Yes','No') NOT NULL DEFAULT 'No', `policy_dst` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table racks # ------------------------------------------------------------ DROP TABLE IF EXISTS `racks`; CREATE TABLE `racks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', `size` int(2) DEFAULT NULL, `location` INT(11) UNSIGNED NULL DEFAULT NULL, `row` INT(11) NOT NULL DEFAULT '1', `hasBack` TINYINT(1) NOT NULL DEFAULT '0', `topDown` tinyint(1) NOT NULL DEFAULT '0', `description` text, `customer_id` INT(11) unsigned NULL default NULL, PRIMARY KEY (`id`), KEY `location` (`location`), KEY `customer_racks` (`customer_id`), CONSTRAINT `customer_racks` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table rackContents # ------------------------------------------------------------ DROP TABLE IF EXISTS `rackContents`; CREATE TABLE `rackContents` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `rack` int(11) unsigned DEFAULT NULL, `rack_start` int(11) unsigned DEFAULT NULL, `rack_size` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `rack` (`rack`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table locations # ------------------------------------------------------------ DROP TABLE IF EXISTS `locations`; CREATE TABLE `locations` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '', `description` text, `address` VARCHAR(128) NULL DEFAULT NULL, `lat` varchar(31) DEFAULT NULL, `long` varchar(31) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table pstnPrefixes # ------------------------------------------------------------ DROP TABLE IF EXISTS `pstnPrefixes`; CREATE TABLE `pstnPrefixes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) DEFAULT NULL, `prefix` varchar(32) DEFAULT NULL, `start` varchar(32) DEFAULT NULL, `stop` varchar(32) DEFAULT NULL, `master` int(11) DEFAULT '0', `deviceId` int(11) unsigned DEFAULT NULL, `description` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table pstnNumbers # ------------------------------------------------------------ DROP TABLE IF EXISTS `pstnNumbers`; CREATE TABLE `pstnNumbers` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `prefix` int(11) unsigned DEFAULT NULL, `number` varchar(32) DEFAULT NULL, `name` varchar(128) DEFAULT NULL, `owner` varchar(128) DEFAULT NULL, `state` int(11) unsigned DEFAULT NULL, `deviceId` int(11) unsigned DEFAULT NULL, `description` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table circuitProviders # ------------------------------------------------------------ DROP TABLE IF EXISTS `circuitProviders`; CREATE TABLE `circuitProviders` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(256) DEFAULT NULL, `description` text, `contact` varchar(128) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table circuits # ------------------------------------------------------------ DROP TABLE IF EXISTS `circuits`; CREATE TABLE `circuits` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `cid` varchar(128) DEFAULT NULL, `provider` int(11) unsigned NOT NULL, `type` int(10) unsigned DEFAULT NULL, `capacity` varchar(128) DEFAULT NULL, `status` enum('Active','Inactive','Reserved') NOT NULL DEFAULT 'Active', `device1` int(11) unsigned DEFAULT NULL, `location1` int(11) unsigned DEFAULT NULL, `device2` int(11) unsigned DEFAULT NULL, `location2` int(11) unsigned DEFAULT NULL, `comment` text, `parent` int(10) unsigned NOT NULL DEFAULT '0', `customer_id` int(11) unsigned DEFAULT NULL, `differentiator` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `circuits_diff_UN` (`cid`,`differentiator`), KEY `location1` (`location1`), KEY `location2` (`location2`), KEY `customer_circuits` (`customer_id`), CONSTRAINT `customer_circuits` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table circuitsLogical # ------------------------------------------------------------ DROP TABLE IF EXISTS `circuitsLogical`; CREATE TABLE `circuitsLogical` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `logical_cid` varchar(128) NOT NULL, `purpose` varchar(64) DEFAULT NULL, `comments` text, `member_count` int(4) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `circuitsLogical_UN` (`logical_cid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table circuitsLogicalMapping # ------------------------------------------------------------ DROP TABLE IF EXISTS `circuitsLogicalMapping`; CREATE TABLE `circuitsLogicalMapping` ( `logicalCircuit_id` int(11) unsigned NOT NULL, `circuit_id` int(11) unsigned NOT NULL, `order` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`logicalCircuit_id`, `circuit_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table circuitTypes # ------------------------------------------------------------ DROP TABLE IF EXISTS `circuitTypes`; CREATE TABLE `circuitTypes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `ctname` varchar(64) NOT NULL, `ctcolor` varchar(7) DEFAULT '#000000', `ctpattern` enum('Solid','Dotted') DEFAULT 'Solid', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `circuitTypes` (`ctname`) VALUES ('Default'); # Dump of table php_sessions # ------------------------------------------------------------ DROP TABLE IF EXISTS `php_sessions`; CREATE TABLE `php_sessions` ( `id` varchar(128) NOT NULL DEFAULT '', `access` int(10) unsigned DEFAULT NULL, `data` text NOT NULL, /* __no_html_escape__ */ `remote_ip` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table routing_bgp # ------------------------------------------------------------ DROP TABLE IF EXISTS `routing_bgp`; CREATE TABLE `routing_bgp` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `local_as` int(12) unsigned NOT NULL, `local_address` varchar(100) NOT NULL DEFAULT '', `peer_name` varchar(255) NOT NULL DEFAULT '', `peer_as` int(12) unsigned NOT NULL, `peer_address` varchar(100) NOT NULL DEFAULT '', `bgp_type` enum('internal','external') NOT NULL DEFAULT 'external', `vrf_id` int(11) unsigned DEFAULT NULL, `circuit_id` int(11) unsigned DEFAULT NULL, `customer_id` int(11) unsigned DEFAULT NULL, `description` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `vrf_id` (`vrf_id`), KEY `circuit_id` (`circuit_id`), KEY `cust_id` (`customer_id`), CONSTRAINT `circuit_id` FOREIGN KEY (`circuit_id`) REFERENCES `circuits` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `cust_id` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `vrf_id` FOREIGN KEY (`vrf_id`) REFERENCES `vrf` (`vrfId`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table routing_subnets # ------------------------------------------------------------ DROP TABLE IF EXISTS `routing_subnets`; CREATE TABLE `routing_subnets` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type` enum('bgp','ospf') NOT NULL DEFAULT 'bgp', `direction` enum('advertised','received') NOT NULL DEFAULT 'advertised', `object_id` int(11) unsigned NOT NULL, `subnet_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `type` (`type`,`object_id`,`subnet_id`), KEY `bgp_id` (`object_id`), KEY `subnet_id` (`subnet_id`), CONSTRAINT `bgp_id` FOREIGN KEY (`object_id`) REFERENCES `routing_bgp` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `subnet_id` FOREIGN KEY (`subnet_id`) REFERENCES `subnets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table vaults # ------------------------------------------------------------ DROP TABLE IF EXISTS `vaults`; CREATE TABLE `vaults` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', `type` enum('passwords','certificates') NOT NULL DEFAULT 'passwords', `description` text, `test` char(128) NOT NULL DEFAULT '', /* __no_html_escape__ */ PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table vaultItems # ------------------------------------------------------------ DROP TABLE IF EXISTS `vaultItems`; CREATE TABLE `vaultItems` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `vaultId` int(11) unsigned NOT NULL, `type` enum('password','certificate') NOT NULL DEFAULT 'password', `type_certificate` enum('public','pkcs12','certificate','website') NOT NULL DEFAULT 'public', `values` text, /* __no_html_escape__ */ PRIMARY KEY (`id`), KEY `vaultId` (`vaultId`), CONSTRAINT `vaultItems_ibfk_1` FOREIGN KEY (`vaultId`) REFERENCES `vaults` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table passkeys # ------------------------------------------------------------ DROP TABLE IF EXISTS `passkeys`; -- passkey table CREATE TABLE `passkeys` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `credentialId` text NOT NULL, `keyId` text NOT NULL, `credential` text NOT NULL, /* __no_html_escape__ */ `comment` text, `created` timestamp NULL DEFAULT NULL, `used` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), CONSTRAINT `user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table nominatim # ------------------------------------------------------------ DROP TABLE IF EXISTS `nominatim`; CREATE TABLE `nominatim` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `url` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /* insert default values */ INSERT INTO `nominatim` (`id`, `url`) VALUES (1, 'https://nominatim.openstreetmap.org/search'); # Dump of table nominatim_cache # ------------------------------------------------------------ DROP TABLE IF EXISTS `nominatim_cache`; CREATE TABLE `nominatim_cache` ( `sha256` binary(32) NOT NULL, /* __no_html_escape__ */ `date` timestamp NOT NULL DEFAULT current_timestamp(), `query` text NOT NULL, /* __no_html_escape__ */ `lat_lng` text NOT NULL, PRIMARY KEY (`sha256`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table -- for autofix comment, leave as it is # ------------------------------------------------------------ UPDATE `settings` SET `version` = "1.73"; UPDATE `settings` SET `dbversion` = 43;