From 204a6c4d0564dd4c64825826c32606b971cd9242 Mon Sep 17 00:00:00 2001 From: MarcGD130 <49853181+MarcGD130@users.noreply.github.com> Date: Wed, 8 May 2019 11:39:19 +0800 Subject: [PATCH] Changed Downloads and Likes to 0 So they won't change the downloads and Likes on the database --- database.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database.sql b/database.sql index 6e4f60137..40edeefd6 100644 --- a/database.sql +++ b/database.sql @@ -230,8 +230,8 @@ CREATE TABLE `levels` ( `levelInfo` mediumtext COLLATE utf8_unicode_ci NOT NULL, `secret` mediumtext COLLATE utf8_unicode_ci NOT NULL, `starDifficulty` int(11) NOT NULL DEFAULT '0' COMMENT '0=N/A 10=EASY 20=NORMAL 30=HARD 40=HARDER 50=INSANE 50=AUTO 50=DEMON', - `downloads` int(11) NOT NULL DEFAULT '300', - `likes` int(11) NOT NULL DEFAULT '100', + `downloads` int(11) NOT NULL DEFAULT '0', + `likes` int(11) NOT NULL DEFAULT '0', `starDemon` int(1) NOT NULL DEFAULT '0', `starAuto` varchar(11) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `starStars` int(11) NOT NULL DEFAULT '0',