Updated to last changes

This commit is contained in:
pezcurrel 2022-12-26 12:30:56 +01:00
parent 93c9e4105e
commit d6d8adee49

View file

@ -148,6 +148,20 @@ CREATE TABLE `InstPolicies` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `InstRules`
--
DROP TABLE IF EXISTS `InstRules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `InstRules` (
`InstID` bigint(20) unsigned NOT NULL,
`Text` varchar(8192) NOT 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 `InstTags` -- Table structure for table `InstTags`
-- --
@ -191,7 +205,6 @@ CREATE TABLE `Instances` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`FirstSeen` int(10) unsigned DEFAULT NULL, `FirstSeen` int(10) unsigned DEFAULT NULL,
`IsMastodon` tinyint(1) unsigned DEFAULT NULL, `IsMastodon` tinyint(1) unsigned DEFAULT NULL,
`Dead` tinyint(1) unsigned NOT NULL DEFAULT 0,
`Priority` tinyint(3) unsigned DEFAULT NULL, `Priority` tinyint(3) unsigned DEFAULT NULL,
`Visible` tinyint(1) unsigned NOT NULL DEFAULT 1, `Visible` tinyint(1) unsigned NOT NULL DEFAULT 1,
`Noxious` tinyint(1) unsigned NOT NULL DEFAULT 0, `Noxious` tinyint(1) unsigned NOT NULL DEFAULT 0,
@ -224,7 +237,8 @@ CREATE TABLE `Instances` (
`AdmURL` varchar(128) DEFAULT NULL, `AdmURL` varchar(128) DEFAULT NULL,
`AdmAvatar` varchar(512) DEFAULT NULL, `AdmAvatar` varchar(512) DEFAULT NULL,
`AdmHeader` varchar(512) DEFAULT NULL, `AdmHeader` varchar(512) DEFAULT NULL,
`LastCheckOk` tinyint(1) 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, `GuestID` int(10) unsigned DEFAULT NULL,
`LastGuestEdit` int(10) unsigned DEFAULT NULL, `LastGuestEdit` int(10) unsigned DEFAULT NULL,
`InsertTS` int(10) unsigned DEFAULT NULL, `InsertTS` int(10) unsigned DEFAULT NULL,
@ -574,4 +588,4 @@ CREATE TABLE `test` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-12-25 18:54:27 -- Dump completed on 2022-12-26 12:30:35