From f9a31449fbd5c97ee72e2ff070729ff11e58f161 Mon Sep 17 00:00:00 2001 From: pezcurrel Date: Fri, 23 Aug 2024 20:42:56 +0200 Subject: [PATCH] Updated --- web/init/mastostart_solo_struttura.sql | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/init/mastostart_solo_struttura.sql b/web/init/mastostart_solo_struttura.sql index 3185384..ed588ec 100644 --- a/web/init/mastostart_solo_struttura.sql +++ b/web/init/mastostart_solo_struttura.sql @@ -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