Updated
This commit is contained in:
parent
059c311f68
commit
f9a31449fb
1 changed files with 4 additions and 3 deletions
|
@ -86,7 +86,8 @@ CREATE TABLE `InstBlocks` (
|
|||
`Domain` varchar(256) NOT NULL,
|
||||
`Severity` varchar(32) NOT NULL,
|
||||
`Comment` varchar(8192) DEFAULT NULL,
|
||||
KEY `InstID` (`InstID`)
|
||||
KEY `InstID` (`InstID`),
|
||||
KEY `Domain` (`Domain`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
@ -267,7 +268,7 @@ CREATE TABLE `Instances` (
|
|||
`LastOkCheckTS` int(10) unsigned DEFAULT NULL,
|
||||
`GuestID` int(10) unsigned DEFAULT NULL,
|
||||
`LastGuestEdit` int(10) unsigned DEFAULT NULL,
|
||||
`InsertTS` int(10) unsigned DEFAULT NULL,
|
||||
`InsertTS` int(10) unsigned NOT NULL,
|
||||
`RPos` int(10) unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`ID`),
|
||||
KEY `LocalityID` (`LocalityID`) USING BTREE,
|
||||
|
@ -597,4 +598,4 @@ CREATE TABLE `ZStats` (
|
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;
|
||||
|
||||
-- Dump completed on 2024-08-22 13:44:56
|
||||
-- Dump completed on 2024-08-23 20:42:40
|
||||
|
|
Loading…
Reference in a new issue