From cfa44975d355237dd7b65a53d6109cf52f66c578 Mon Sep 17 00:00:00 2001 From: Nigel Sheldon Date: Wed, 17 Feb 2021 17:28:57 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20du=20sch=C3=A9ma=20de=20?= =?UTF-8?q?BDD=20car=20TINYINT=20se=20limite=20a=20127=20max,=20or=20on=20?= =?UTF-8?q?a=20150=20images?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.sql b/schema.sql index 5c7c4c7..096c278 100644 --- a/schema.sql +++ b/schema.sql @@ -608,7 +608,7 @@ CREATE TABLE IF NOT EXISTS `planete` ( `isolement` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `nom_planete` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `moral` float NOT NULL DEFAULT 0.5, - `image` tinyint(4) NOT NULL DEFAULT 0, + `image` tinyint unsigned NOT NULL DEFAULT 0, `cases` int(11) NOT NULL DEFAULT 0, `debris_met` bigint(20) NOT NULL DEFAULT 0, `debris_cri` bigint(20) NOT NULL DEFAULT 0,