From 9baa819e6c27aed0586d48cad84abce280597895 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 1 Nov 2025 20:39:50 -0700 Subject: [PATCH] Forgot to make this nullable --- database.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database.sql b/database.sql index 0af6049..ec493f7 100644 --- a/database.sql +++ b/database.sql @@ -3,7 +3,7 @@ -- https://www.phpmyadmin.net/ -- -- Host: localhost --- Generation Time: Nov 02, 2025 at 03:38 AM +-- Generation Time: Nov 02, 2025 at 03:39 AM -- Server version: 12.0.2-MariaDB -- PHP Version: 8.4.14 @@ -32,7 +32,7 @@ CREATE TABLE `launchergames` ( `name` text NOT NULL, `official` tinyint(1) NOT NULL DEFAULT 0, `verified` tinyint(1) NOT NULL DEFAULT 0, - `developer` varchar(32) NOT NULL, + `developer` varchar(32) DEFAULT NULL, `cutOff` int(11) NOT NULL DEFAULT -1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;