From b8deb309516a8a9f0d02288cfb6a2820822ad93e Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 20 Dec 2025 15:45:47 -0700 Subject: [PATCH] Remove `cutOff` entirely --- database/lncvrtgames.sql | 2 +- src/lib/tables.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/database/lncvrtgames.sql b/database/lncvrtgames.sql index d5ea1be..ba05960 100644 --- a/database/lncvrtgames.sql +++ b/database/lncvrtgames.sql @@ -3,7 +3,7 @@ -- https://www.phpmyadmin.net/ -- -- Host: localhost --- Generation Time: Dec 17, 2025 at 11:36 PM +-- Generation Time: Dec 20, 2025 at 10:45 PM -- Server version: 12.1.2-MariaDB -- PHP Version: 8.5.1 diff --git a/src/lib/tables.ts b/src/lib/tables.ts index 80aadac..83e26eb 100644 --- a/src/lib/tables.ts +++ b/src/lib/tables.ts @@ -37,8 +37,7 @@ export const launcherGames = mysqlTable('launchergames', { name: text('name').notNull(), official: boolean('official').default(false).notNull(), verified: boolean('verified').default(false).notNull(), - developer: varchar('developer', { length: 32 }), - cutOff: int('cutOff').default(-1) + developer: varchar('developer', { length: 32 }) }) export const launcherVersions = mysqlTable('launcherversions', {