From 3f565462913b2065c38360f8a07ca25cc1e6892e Mon Sep 17 00:00:00 2001 From: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Date: Thu, 18 Mar 2021 14:26:49 +0000 Subject: [PATCH] Converts MyISAM tables to InnoDB --- SQL/paradise_schema.sql | 16 +- SQL/paradise_schema_prefixed.sql | 16 +- SQL/updates/22-23.sql | 11 ++ code/__DEFINES/misc.dm | 2 +- config/example/dbconfig.txt | 2 +- tgui/log.txt | 293 +++++++++++++++++++++++++++++++ tools/ci/dbconfig.txt | 2 +- 7 files changed, 323 insertions(+), 19 deletions(-) create mode 100644 SQL/updates/22-23.sql create mode 100644 tgui/log.txt diff --git a/SQL/paradise_schema.sql b/SQL/paradise_schema.sql index 8917d28d6bb..a1ece757484 100644 --- a/SQL/paradise_schema.sql +++ b/SQL/paradise_schema.sql @@ -99,7 +99,7 @@ CREATE TABLE `customuseritems` ( `cuiJobMask` text NOT NULL, PRIMARY KEY (`id`), KEY `cuiCKey` (`cuiCKey`) -) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -126,7 +126,7 @@ CREATE TABLE `death` ( `fireloss` int(11) NOT NULL, `oxyloss` int(11) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -241,7 +241,7 @@ CREATE TABLE `feedback` ( `version` tinyint(3) UNSIGNED NOT NULL, `json` LONGTEXT NOT NULL COLLATE 'utf8mb4_general_ci', PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -321,7 +321,7 @@ CREATE TABLE `karma` ( `spenderip` text NOT NULL, `time` datetime NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -338,7 +338,7 @@ CREATE TABLE `karmatotals` ( `karmaspent` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `byondkey` (`byondkey`) -) ENGINE=MyISAM AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -359,7 +359,7 @@ CREATE TABLE `library` ( PRIMARY KEY (`id`), KEY `ckey` (`ckey`), KEY `flagged` (`flagged`) -) ENGINE=MyISAM AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -375,7 +375,7 @@ CREATE TABLE `legacy_population` ( `admincount` int(11) DEFAULT NULL, `time` datetime NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -392,7 +392,7 @@ CREATE TABLE `whitelist` ( `species` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `ckey` (`ckey`) -) ENGINE=MyISAM AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; diff --git a/SQL/paradise_schema_prefixed.sql b/SQL/paradise_schema_prefixed.sql index b3c8f1f7643..9b2fdb845e0 100644 --- a/SQL/paradise_schema_prefixed.sql +++ b/SQL/paradise_schema_prefixed.sql @@ -98,7 +98,7 @@ CREATE TABLE `SS13_customuseritems` ( `cuiPropAdjust` text, `cuiJobMask` text NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4; ALTER TABLE `SS13_customuseritems` ADD INDEX(`cuiCKey`); /*!40101 SET character_set_client = @saved_cs_client */; @@ -126,7 +126,7 @@ CREATE TABLE `SS13_death` ( `fireloss` int(11) NOT NULL, `oxyloss` int(11) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -240,7 +240,7 @@ CREATE TABLE `SS13_feedback` ( `version` tinyint(3) UNSIGNED NOT NULL, `json` LONGTEXT NOT NULL COLLATE 'utf8mb4_general_ci', PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -320,7 +320,7 @@ CREATE TABLE `SS13_karma` ( `spenderip` text NOT NULL, `time` datetime NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -337,7 +337,7 @@ CREATE TABLE `SS13_karmatotals` ( `karmaspent` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `byondkey` (`byondkey`) -) ENGINE=MyISAM AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -358,7 +358,7 @@ CREATE TABLE `SS13_library` ( PRIMARY KEY (`id`), KEY `ckey` (`ckey`), KEY `flagged` (`flagged`) -) ENGINE=MyISAM AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -374,7 +374,7 @@ CREATE TABLE `SS13_legacy_population` ( `admincount` int(11) DEFAULT NULL, `time` datetime NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -391,7 +391,7 @@ CREATE TABLE `SS13_whitelist` ( `species` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `ckey` (`ckey`) -) ENGINE=MyISAM AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; diff --git a/SQL/updates/22-23.sql b/SQL/updates/22-23.sql new file mode 100644 index 00000000000..975e8acd413 --- /dev/null +++ b/SQL/updates/22-23.sql @@ -0,0 +1,11 @@ +# Updating SQL from version 22 to 23 -AffectedArc07 +# Converts existing MyISAM tables to InnoDB + +ALTER TABLE `customuseritems` ENGINE=InnoDB; +ALTER TABLE `death` ENGINE=InnoDB; +ALTER TABLE `feedback` ENGINE=InnoDB; +ALTER TABLE `karma` ENGINE=InnoDB; +ALTER TABLE `karmatotals` ENGINE=InnoDB; +ALTER TABLE `legacy_population` ENGINE=InnoDB; +ALTER TABLE `library` ENGINE=InnoDB; +ALTER TABLE `whitelist` ENGINE=InnoDB; diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index e75eb49a02e..f9aba1efc1b 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -363,7 +363,7 @@ #define INVESTIGATE_BOMB "bombs" // The SQL version required by this version of the code -#define SQL_VERSION 22 +#define SQL_VERSION 23 // Vending machine stuff #define CAT_NORMAL 1 diff --git a/config/example/dbconfig.txt b/config/example/dbconfig.txt index 1cf22d60895..7c8f67e57c4 100644 --- a/config/example/dbconfig.txt +++ b/config/example/dbconfig.txt @@ -9,7 +9,7 @@ ## This value must be set to the version of the paradise schema in use. ## If this value does not match, the SQL database will not be loaded and an error will be generated. ## Roundstart will be delayed. -DB_VERSION 22 +DB_VERSION 23 ## Server the MySQL database can be found at. # Examples: localhost, 200.135.5.43, www.mysqldb.com, etc. diff --git a/tgui/log.txt b/tgui/log.txt new file mode 100644 index 00000000000..21f36619f85 --- /dev/null +++ b/tgui/log.txt @@ -0,0 +1,293 @@ +yarn install v1.22.4 +[1/4] Resolving packages... +success Already up-to-date. +Done in 1.09s. + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\components\Dropdown.js + 74:18 error Expected newline between test and consequent of ternary expression multiline-ternary + 74:36 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\components\Input.js + 138:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 138:22 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\AirAlarm.js + 65:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 65:14 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\BodyScanner.js + 81:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 81:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 160:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 160:35 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\ChemMaster.js + 276:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 276:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\CloningConsole.js + 30:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 30:33 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 220:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 220:24 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 437:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 437:22 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 448:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 448:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\Contractor.js + 72:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 72:30 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\CrewMonitor.js + 109:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 109:38 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 136:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 136:39 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 137:17 error Expected newline between test and consequent of ternary expression multiline-ternary + 137:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\Cryo.js + 66:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 66:24 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 190:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 190:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\DNAModifier.js + 79:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 79:22 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 104:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 104:35 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 122:21 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 535:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 535:18 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 536:9 error Expected newline between test and consequent of ternary expression multiline-ternary + 536:21 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 543:19 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 590:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 590:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 617:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 617:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\EFTPOS.js + 17:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 17:31 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\ExosuitFabricator.js + 208:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 208:31 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 310:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 310:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 361:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 361:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\FloorPainter.js + 93:28 error Expected newline between test and consequent of ternary expression multiline-ternary + 93:41 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\GPS.js + 37:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 37:20 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 46:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 46:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\Instrument.js + 302:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 302:20 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 376:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 376:35 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 479:9 error Expected newline between test and consequent of ternary expression multiline-ternary + 479:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\MedicalRecords.js + 288:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 363:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 363:26 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\MiningVendor.js + 33:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 33:17 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 118:13 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\Newscaster.js + 63:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 63:23 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 428:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 428:37 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\OperatingComputer.js + 145:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 145:31 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\OreRedemption.js + 51:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 51:17 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 96:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 96:15 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\PDA.js + 82:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 82:23 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 96:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 96:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\PersonalCrafting.js + 76:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 76:30 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\PoolController.js + 58:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 58:26 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\PortablePump.js + 14:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 14:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\PortableScrubber.js + 14:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 14:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RCD.js + 133:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 133:20 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 146:11 error Expected newline between test and consequent of ternary expression multiline-ternary + 146:35 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RPD.js + 103:18 error Expected newline between test and consequent of ternary expression multiline-ternary + 103:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RequestConsole.js + 330:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 330:23 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsole.js + 49:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 49:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsoleComponents\DataDiskMenu.js + 48:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 48:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsoleComponents\DeconstructionMenu.js + 40:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 40:37 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsoleComponents\LatheCategory.js + 34:18 error Expected newline between test and consequent of ternary expression multiline-ternary + 34:35 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 41:18 error Expected newline between test and consequent of ternary expression multiline-ternary + 41:36 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsoleComponents\LatheMaterialStorage.js + 29:18 error Expected newline between test and consequent of ternary expression multiline-ternary + 29:35 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 33:22 error Expected newline between test and consequent of ternary expression multiline-ternary + 33:43 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsoleComponents\LatheMaterials.js + 21:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 21:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 30:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 30:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\RndConsoleComponents\SettingsMenu.js + 53:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 53:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 75:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 75:31 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 86:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 86:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 99:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 99:33 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\Safe.js + 28:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 28:19 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\SecurityRecords.js + 418:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 418:43 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\ShuttleConsole.js + 14:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 14:30 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\ShuttleManipulator.js + 159:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 159:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 184:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 184:19 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\Sleeper.js + 204:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 204:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\TachyonArray.js + 41:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 41:28 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\TcommsCore.js + 235:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 235:33 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\TcommsRelay.js + 35:16 error Expected newline between test and consequent of ternary expression multiline-ternary + 35:31 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 47:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 47:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\TransferValve.js + 39:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 39:32 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 56:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 56:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 73:14 error Expected newline between test and consequent of ternary expression multiline-ternary + 73:25 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\common\SimpleRecords.js + 14:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 14:19 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 86:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 86:22 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 130:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 130:23 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 168:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 168:20 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pai\pai_bioscan.js + 27:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 27:17 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pai\pai_directives.js + 17:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 17:21 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 35:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 35:27 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pai\pai_doorjack.js + 42:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 42:23 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pda\pda_mob_hunt.js + 18:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 18:24 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 65:10 error Expected newline between test and consequent of ternary expression multiline-ternary + 65:26 error Expected newline between consequent and alternate of ternary expression multiline-ternary + 68:11 error Expected newline between test and consequent of ternary expression multiline-ternary + 68:19 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pda\pda_mule.js + 13:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 13:17 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pda\pda_secbot.js + 13:8 error Expected newline between test and consequent of ternary expression multiline-ternary + 13:17 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +C:\Users\AffectedArc07\Documents\Paradise\tgui\packages\tgui\interfaces\pda\pda_supplyrecords.js + 21:12 error Expected newline between test and consequent of ternary expression multiline-ternary + 21:29 error Expected newline between consequent and alternate of ternary expression multiline-ternary + +✖ 182 problems (182 errors, 0 warnings) + diff --git a/tools/ci/dbconfig.txt b/tools/ci/dbconfig.txt index 2fff6faf540..fc7d80f39aa 100644 --- a/tools/ci/dbconfig.txt +++ b/tools/ci/dbconfig.txt @@ -2,7 +2,7 @@ # Dont use it ingame # Remember to update this when you increase the SQL version! -aa SQL_ENABLED -DB_VERSION 22 +DB_VERSION 23 ADDRESS 127.0.0.1 PORT 3306 FEEDBACK_DATABASE feedback