Add changelog
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
-- https://www.phpmyadmin.net/
|
-- https://www.phpmyadmin.net/
|
||||||
--
|
--
|
||||||
-- Host: localhost
|
-- Host: localhost
|
||||||
-- Generation Time: Dec 21, 2025 at 04:23 AM
|
-- Generation Time: Jan 01, 2026 at 08:05 AM
|
||||||
-- Server version: 12.1.2-MariaDB
|
-- Server version: 12.1.2-MariaDB
|
||||||
-- PHP Version: 8.5.1
|
-- PHP Version: 8.5.1
|
||||||
|
|
||||||
@@ -68,7 +68,8 @@ CREATE TABLE `launcherversionmanifest` (
|
|||||||
`game` int(11) NOT NULL DEFAULT 0,
|
`game` int(11) NOT NULL DEFAULT 0,
|
||||||
`place` int(11) NOT NULL DEFAULT 0,
|
`place` int(11) NOT NULL DEFAULT 0,
|
||||||
`sha512sums` text NOT NULL DEFAULT '[]',
|
`sha512sums` text NOT NULL DEFAULT '[]',
|
||||||
`sizes` text NOT NULL DEFAULT '\'[]\''
|
`sizes` text NOT NULL DEFAULT '\'[]\'',
|
||||||
|
`changelog` text DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=COMPRESSED;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=COMPRESSED;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|||||||
@@ -61,7 +61,8 @@ export const launcherVersionManifest = mysqlTable('launcherversionmanifest', {
|
|||||||
.notNull(),
|
.notNull(),
|
||||||
place: int('place').default(0).notNull(),
|
place: int('place').default(0).notNull(),
|
||||||
sha512sums: text('sha512sums').default('[]').notNull(),
|
sha512sums: text('sha512sums').default('[]').notNull(),
|
||||||
sizes: text('sizes').default('[]').notNull()
|
sizes: text('sizes').default('[]').notNull(),
|
||||||
|
changelog: text('changelog')
|
||||||
})
|
})
|
||||||
|
|
||||||
// berrydashdatabase
|
// berrydashdatabase
|
||||||
|
|||||||
@@ -81,7 +81,8 @@ export async function handler (context: Context) {
|
|||||||
executables: launcherVersionManifest.executables,
|
executables: launcherVersionManifest.executables,
|
||||||
sha512sums: launcherVersionManifest.sha512sums,
|
sha512sums: launcherVersionManifest.sha512sums,
|
||||||
sizes: launcherVersionManifest.sizes,
|
sizes: launcherVersionManifest.sizes,
|
||||||
place: launcherVersionManifest.place
|
place: launcherVersionManifest.place,
|
||||||
|
changelog: launcherVersionManifest.changelog
|
||||||
})
|
})
|
||||||
.from(launcherVersionManifest)
|
.from(launcherVersionManifest)
|
||||||
.where(eq(launcherVersionManifest.hidden, false))
|
.where(eq(launcherVersionManifest.hidden, false))
|
||||||
|
|||||||
Reference in New Issue
Block a user