Rename columns

This commit is contained in:
2026-01-27 10:18:25 -07:00
parent 9acc71fa13
commit 0fb9e4f888
3 changed files with 10 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jan 27, 2026 at 04:31 PM
-- Generation Time: Jan 27, 2026 at 05:18 PM
-- Server version: 12.1.2-MariaDB
-- PHP Version: 8.5.2
@@ -33,7 +33,7 @@ CREATE TABLE `games` (
`official` tinyint(1) NOT NULL DEFAULT 0,
`verified` tinyint(1) NOT NULL DEFAULT 0,
`developer` varchar(32) DEFAULT NULL,
`subcategoryNames` text NOT NULL DEFAULT '{}'
`categoryNames` text NOT NULL DEFAULT '\'{}\''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
-- --------------------------------------------------------
@@ -60,7 +60,7 @@ CREATE TABLE `launcherupdates` (
CREATE TABLE `launcherversionmanifest` (
`id` varchar(24) NOT NULL,
`versionName` text NOT NULL,
`displayName` text NOT NULL,
`releaseDate` bigint(20) NOT NULL,
`downloadUrls` text NOT NULL,
`platforms` text NOT NULL,
@@ -71,7 +71,7 @@ CREATE TABLE `launcherversionmanifest` (
`sha512sums` text NOT NULL DEFAULT '[]',
`sizes` text NOT NULL DEFAULT '\'[]\'',
`changelog` text DEFAULT NULL,
`subcategory` int(11) NOT NULL DEFAULT -1,
`category` int(11) NOT NULL DEFAULT -1,
`lastRevision` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=COMPRESSED;