This commit is contained in:
pezcurrel 2023-01-06 22:05:22 +01:00
parent 85559ac1a4
commit 03aa9cb786

View file

@ -73,6 +73,22 @@ CREATE TABLE `InstActivity` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `InstBlocks`
--
DROP TABLE IF EXISTS `InstBlocks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `InstBlocks` (
`InstID` bigint(20) unsigned NOT NULL,
`Domain` varchar(256) NOT NULL,
`Severity` varchar(32) NOT NULL,
`Comment` varchar(8192) DEFAULT NULL,
KEY `InstID` (`InstID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `InstChecks`
--
@ -237,6 +253,8 @@ CREATE TABLE `Instances` (
`AdmURL` varchar(128) DEFAULT NULL,
`AdmAvatar` varchar(512) DEFAULT NULL,
`AdmHeader` varchar(512) DEFAULT NULL,
`TotChecks` int(10) unsigned NOT NULL DEFAULT 0,
`OkChecks` int(10) unsigned NOT NULL DEFAULT 0,
`WasLastCheckOk` tinyint(1) unsigned NOT NULL DEFAULT 0,
`LastOkCheckTS` int(10) unsigned DEFAULT NULL,
`GuestID` int(10) unsigned DEFAULT NULL,
@ -588,4 +606,4 @@ CREATE TABLE `test` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-12-26 12:30:35
-- Dump completed on 2023-01-06 22:04:12