Private
Public Access
1
0

Update schema dump from development
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-04-08 00:30:52 -07:00
parent bd4e52a73b
commit ae7acb4111

View File

@@ -96,6 +96,7 @@ DROP TABLE IF EXISTS `accounts`;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts` ( CREATE TABLE `accounts` (
`id` int unsigned NOT NULL AUTO_INCREMENT, `id` int unsigned NOT NULL AUTO_INCREMENT,
`id_token` varchar(36) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL, `name` varchar(255) DEFAULT NULL,
`organization_name` varchar(150) DEFAULT NULL, `organization_name` varchar(150) DEFAULT NULL,
`organization_url` varchar(150) DEFAULT NULL, `organization_url` varchar(150) DEFAULT NULL,
@@ -107,7 +108,8 @@ CREATE TABLE `accounts` (
`stripe_customer_id` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL, `stripe_customer_id` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin DEFAULT NULL,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
UNIQUE KEY `url_slug_idx` (`url_slug`), UNIQUE KEY `url_slug_idx` (`url_slug`),
UNIQUE KEY `stripe_customer_id` (`stripe_customer_id`) UNIQUE KEY `stripe_customer_id` (`stripe_customer_id`),
UNIQUE KEY `id_token` (`id_token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
@@ -131,7 +133,11 @@ CREATE TABLE `api_keys` (
`created_on` datetime NOT NULL, `created_on` datetime NOT NULL,
`modified_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `modified_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
UNIQUE KEY `api_key` (`api_key`) UNIQUE KEY `api_key` (`api_key`),
KEY `api_keys_account_fk` (`account_id`),
KEY `api_keys_user_fk` (`user_id`),
CONSTRAINT `api_keys_account_fk` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`),
CONSTRAINT `api_keys_user_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
@@ -306,6 +312,7 @@ DROP TABLE IF EXISTS `monitors`;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `monitors` ( CREATE TABLE `monitors` (
`id` int unsigned NOT NULL AUTO_INCREMENT, `id` int unsigned NOT NULL AUTO_INCREMENT,
`id_token` varchar(36) DEFAULT NULL,
`type` enum('monitor','score') NOT NULL DEFAULT 'monitor', `type` enum('monitor','score') NOT NULL DEFAULT 'monitor',
`user_id` int unsigned DEFAULT NULL, `user_id` int unsigned DEFAULT NULL,
`account_id` int unsigned DEFAULT NULL, `account_id` int unsigned DEFAULT NULL,
@@ -315,20 +322,27 @@ CREATE TABLE `monitors` (
`ip_version` enum('v4','v6') DEFAULT NULL, `ip_version` enum('v4','v6') DEFAULT NULL,
`tls_name` varchar(255) DEFAULT NULL, `tls_name` varchar(255) DEFAULT NULL,
`api_key` varchar(64) DEFAULT NULL, `api_key` varchar(64) DEFAULT NULL,
`api_key_id` int unsigned DEFAULT NULL,
`status` enum('pending','testing','active','paused','deleted') NOT NULL, `status` enum('pending','testing','active','paused','deleted') NOT NULL,
`config` text NOT NULL, `config` text NOT NULL,
`client_version` varchar(255) NOT NULL DEFAULT '', `client_version` varchar(255) NOT NULL DEFAULT '',
`last_seen` datetime(6) DEFAULT NULL, `last_seen` datetime(6) DEFAULT NULL,
`last_submit` datetime(6) DEFAULT NULL, `last_submit` datetime(6) DEFAULT NULL,
`created_on` datetime NOT NULL, `created_on` datetime NOT NULL,
`deleted_on` datetime DEFAULT NULL,
`is_current` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
UNIQUE KEY `ip` (`ip`,`ip_version`),
UNIQUE KEY `api_key` (`api_key`), UNIQUE KEY `api_key` (`api_key`),
UNIQUE KEY `monitors_tls_name` (`tls_name`,`ip_version`), UNIQUE KEY `monitors_tls_name` (`tls_name`,`ip_version`),
UNIQUE KEY `token_id` (`id_token`),
UNIQUE KEY `id_token` (`id_token`),
UNIQUE KEY `ip` (`ip`,`is_current`),
KEY `monitors_user_id` (`user_id`), KEY `monitors_user_id` (`user_id`),
KEY `monitors_account_fk` (`account_id`), KEY `monitors_account_fk` (`account_id`),
KEY `type_status` (`type`,`status`), KEY `type_status` (`type`,`status`),
KEY `monitors_api_key_fk` (`api_key_id`),
CONSTRAINT `monitors_account_fk` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`), CONSTRAINT `monitors_account_fk` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`),
CONSTRAINT `monitors_api_key_fk` FOREIGN KEY (`api_key_id`) REFERENCES `api_keys` (`id`),
CONSTRAINT `monitors_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) CONSTRAINT `monitors_user_id` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
@@ -665,6 +679,7 @@ CREATE TABLE `user_privileges` (
`vendor_admin` tinyint NOT NULL DEFAULT '0', `vendor_admin` tinyint NOT NULL DEFAULT '0',
`equipment_admin` tinyint NOT NULL DEFAULT '0', `equipment_admin` tinyint NOT NULL DEFAULT '0',
`support_staff` tinyint NOT NULL DEFAULT '0', `support_staff` tinyint NOT NULL DEFAULT '0',
`monitor_admin` tinyint NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`), PRIMARY KEY (`user_id`),
CONSTRAINT `user_privileges_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE CONSTRAINT `user_privileges_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
@@ -722,6 +737,7 @@ DROP TABLE IF EXISTS `users`;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` ( CREATE TABLE `users` (
`id` int unsigned NOT NULL AUTO_INCREMENT, `id` int unsigned NOT NULL AUTO_INCREMENT,
`id_token` varchar(36) DEFAULT NULL,
`email` varchar(255) NOT NULL, `email` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL, `name` varchar(255) DEFAULT NULL,
`username` varchar(40) DEFAULT NULL, `username` varchar(40) DEFAULT NULL,
@@ -729,7 +745,8 @@ CREATE TABLE `users` (
`deletion_on` datetime DEFAULT NULL, `deletion_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`), UNIQUE KEY `email` (`email`),
UNIQUE KEY `username` (`username`) UNIQUE KEY `username` (`username`),
UNIQUE KEY `id_token` (`id_token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
@@ -742,6 +759,7 @@ DROP TABLE IF EXISTS `vendor_zones`;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vendor_zones` ( CREATE TABLE `vendor_zones` (
`id` int unsigned NOT NULL AUTO_INCREMENT, `id` int unsigned NOT NULL AUTO_INCREMENT,
`id_token` varchar(36) DEFAULT NULL,
`zone_name` varchar(90) NOT NULL, `zone_name` varchar(90) NOT NULL,
`status` enum('New','Pending','Approved','Rejected') NOT NULL DEFAULT 'New', `status` enum('New','Pending','Approved','Rejected') NOT NULL DEFAULT 'New',
`user_id` int unsigned DEFAULT NULL, `user_id` int unsigned DEFAULT NULL,
@@ -761,6 +779,7 @@ CREATE TABLE `vendor_zones` (
`account_id` int unsigned DEFAULT NULL, `account_id` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
UNIQUE KEY `zone_name` (`zone_name`,`dns_root_id`), UNIQUE KEY `zone_name` (`zone_name`,`dns_root_id`),
UNIQUE KEY `id_token` (`id_token`),
KEY `vendor_zones_user_id` (`user_id`), KEY `vendor_zones_user_id` (`user_id`),
KEY `dns_root_fk` (`dns_root_id`), KEY `dns_root_fk` (`dns_root_id`),
KEY `vendor_zone_account_fk` (`account_id`), KEY `vendor_zone_account_fk` (`account_id`),
@@ -824,7 +843,7 @@ CREATE TABLE `zones` (
/*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */;
/*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 SET collation_connection = utf8mb4_general_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`v-root-ntp-askntp-JRFPjVcaH1HOoQ`@`10.%` SQL SECURITY DEFINER */ /*!50013 DEFINER=`v-root-ntp-askntp-8LxBXDIaIhNtfb`@`10.%` SQL SECURITY DEFINER */
/*!50001 VIEW `monitors_data` AS select `monitors`.`id` AS `id`,`monitors`.`account_id` AS `account_id`,`monitors`.`type` AS `type`,if((`monitors`.`type` = 'score'),`monitors`.`name`,substring_index(`monitors`.`tls_name`,'.',1)) AS `name`,`monitors`.`ip` AS `ip`,`monitors`.`ip_version` AS `ip_version`,`monitors`.`status` AS `status`,`monitors`.`client_version` AS `client_version`,`monitors`.`last_seen` AS `last_seen`,`monitors`.`last_submit` AS `last_submit` from `monitors` where (not((`monitors`.`tls_name` like '%.system'))) */; /*!50001 VIEW `monitors_data` AS select `monitors`.`id` AS `id`,`monitors`.`account_id` AS `account_id`,`monitors`.`type` AS `type`,if((`monitors`.`type` = 'score'),`monitors`.`name`,substring_index(`monitors`.`tls_name`,'.',1)) AS `name`,`monitors`.`ip` AS `ip`,`monitors`.`ip_version` AS `ip_version`,`monitors`.`status` AS `status`,`monitors`.`client_version` AS `client_version`,`monitors`.`last_seen` AS `last_seen`,`monitors`.`last_submit` AS `last_submit` from `monitors` where (not((`monitors`.`tls_name` like '%.system'))) */;
/*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_client = @saved_cs_client */;
/*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET character_set_results = @saved_cs_results */;
@@ -839,4 +858,4 @@ CREATE TABLE `zones` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */; /*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;
-- Dump completed on 2025-01-18 4:31:13 -- Dump completed on 2025-04-08 7:30:12